From 178d73257567fce95a50ebf4fe9debbe1901fd60 Mon Sep 17 00:00:00 2001 From: Anh Nhan Nguyen Date: Fri, 22 Mar 2013 13:48:23 -0700 Subject: [PATCH] Fixing a severe bug in PhabricatorMacroQuery Summary: Just look at it for yourself Test Plan: Fixed some fatals in a future diff Reviewers: epriestley Reviewed By: epriestley CC: aran, Korvin Differential Revision: https://secure.phabricator.com/D5420 --- src/applications/macro/query/PhabricatorMacroQuery.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/applications/macro/query/PhabricatorMacroQuery.php b/src/applications/macro/query/PhabricatorMacroQuery.php index 1599c783a1..155d236607 100644 --- a/src/applications/macro/query/PhabricatorMacroQuery.php +++ b/src/applications/macro/query/PhabricatorMacroQuery.php @@ -89,7 +89,7 @@ final class PhabricatorMacroQuery if ($this->phids) { $where[] = qsprintf( $conn, - 'm.phid IN (%Ld)', + 'm.phid IN (%Ls)', $this->phids); }