From cd2dfbd751a32826ac02c06d348b4bdd9d21109f Mon Sep 17 00:00:00 2001 From: Brian Shaughnessy Date: Tue, 20 Jan 2015 21:28:29 -0500 Subject: [PATCH] CRM-15849: fix translation string, comments --- CRM/Contact/BAO/Query.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CRM/Contact/BAO/Query.php b/CRM/Contact/BAO/Query.php index 4081202cf5..a809ac54dc 100644 --- a/CRM/Contact/BAO/Query.php +++ b/CRM/Contact/BAO/Query.php @@ -3291,7 +3291,7 @@ WHERE id IN ( $groupIDs ) /* * Where/qill clause for greeting fields * - * @params $values + * @param array $values * * @return void */ @@ -3299,7 +3299,7 @@ WHERE id IN ( $groupIDs ) list($name, $op, $value, $grouping, $wildcard) = $values; $name .= '_display'; - $this->_qill[$grouping][] = "Greeting $op $value"; + $this->_qill[$grouping][] = ts('Greeting %1 %2', array(1 => $op, 2 => $value)); $this->_where[$grouping][] = self::buildClause("contact_a.{$name}", 'LIKE', "$value", 'String'); } -- 2.25.1