@recaptime-dev's working patches + fork for Phorge, a community fork of Phabricator. (Upstream dev and stable branches are at upstream/main and upstream/stable respectively.) hq.recaptime.dev/wiki/Phorge
phorge phabricator
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

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

+2 -2
+2 -2
src/applications/differential/controller/DifferentialInlineCommentEditController.php
··· 204 204 205 205 queryfx( 206 206 $conn_w, 207 - 'INSERT IGNORE INTO %T (userPHID, commentID) VALUES %Q', 207 + 'INSERT IGNORE INTO %T (userPHID, commentID) VALUES %LQ', 208 208 $table->getTableName(), 209 - implode(', ', $sql)); 209 + $sql); 210 210 } 211 211 212 212 protected function showComments(array $ids) {