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:
@@ -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) {
|
||||
|
||||
Reference in New Issue
Block a user