1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2024-11-10 17:02:41 +01:00

Fix a stray "%Q" warning when hiding/showing inline comments

Summary: See PHI1095.

Test Plan: Viewed a revision, toggled hide/show on inline comments. Before: warning in logs; after: smooth sailing.

Reviewers: amckinley

Reviewed By: amckinley

Differential Revision: https://secure.phabricator.com/D20212
This commit is contained in:
epriestley 2019-02-25 12:41:57 -08:00
parent d1546209c5
commit dc9aaa0fc2

View file

@ -204,9 +204,9 @@ final class DifferentialInlineCommentEditController
queryfx(
$conn_w,
'INSERT IGNORE INTO %T (userPHID, commentID) VALUES %Q',
'INSERT IGNORE INTO %T (userPHID, commentID) VALUES %LQ',
$table->getTableName(),
implode(', ', $sql));
$sql);
}
protected function showComments(array $ids) {