CRM-13149 remove code comment
authoreileen <eileen@fuzion.co.nz>
Fri, 2 Aug 2013 11:43:54 +0000 (23:43 +1200)
committereileen <eileen@fuzion.co.nz>
Fri, 2 Aug 2013 11:43:54 +0000 (23:43 +1200)
CRM/Core/DAO.php

index 37e457c021fa854e61317cd825ac97cb17c28f91..9a83e35c592e4a851c26913ff1f342ac3868f4ba 100644 (file)
@@ -1826,7 +1826,6 @@ EOS;
   public function createSQLFilter($fieldName, $filter, $type, $alias = NULL) {
     // http://issues.civicrm.org/jira/browse/CRM-9150 - stick with 'simple' operators for now
     // support for other syntaxes is discussed in ticket but being put off for now
-    //@todo consolidate this and the version from api/v3/utils.php into one location
     $acceptedSQLOperators = array('=', '<=', '>=', '>', '<', 'LIKE', "<>", "!=", "NOT LIKE", 'IN', 'NOT IN', 'BETWEEN', 'NOT BETWEEN');
     foreach ($filter as $operator => $criteria) {
       if (in_array($operator, $acceptedSQLOperators)) {