mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-30 02:32:42 +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:
parent
d1546209c5
commit
dc9aaa0fc2
1 changed files with 2 additions and 2 deletions
|
@ -204,9 +204,9 @@ final class DifferentialInlineCommentEditController
|
||||||
|
|
||||||
queryfx(
|
queryfx(
|
||||||
$conn_w,
|
$conn_w,
|
||||||
'INSERT IGNORE INTO %T (userPHID, commentID) VALUES %Q',
|
'INSERT IGNORE INTO %T (userPHID, commentID) VALUES %LQ',
|
||||||
$table->getTableName(),
|
$table->getTableName(),
|
||||||
implode(', ', $sql));
|
$sql);
|
||||||
}
|
}
|
||||||
|
|
||||||
protected function showComments(array $ids) {
|
protected function showComments(array $ids) {
|
||||||
|
|
Loading…
Reference in a new issue