Commit 3c0754ef83b773cba993ef2d645b276332a51321
1 parent
4cb4a1b3
KTS-1921
"Error when clicking on the Advanced search button. " Fixed. Reviewed By: Conrad git-svn-id: https://kt-dms.svn.sourceforge.net/svnroot/kt-dms/trunk@6551 c91229c3-7414-0410-bfa2-8a42b809f60b
Showing
1 changed file
with
1 additions
and
1 deletions
search/booleanSearch.php
| ... | ... | @@ -276,7 +276,7 @@ class BooleanSearchDispatcher extends KTStandardDispatcher { |
| 276 | 276 | if(!empty($subgroup['values'])) { |
| 277 | 277 | foreach($subgroup['values'] as $value) { |
| 278 | 278 | $oCriterion =& $oCriteriaRegistry->getCriterion($value['type']); |
| 279 | - if($oCriterion == null || $oCriterion == "" || PEAR:isError($oCriterion)) { | |
| 279 | + if($oCriterion == null || $oCriterion == "" || PEAR::isError($oCriterion)) { | |
| 280 | 280 | $this->errorRedirectToMain('Criterion error'); |
| 281 | 281 | } |
| 282 | 282 | $aGroup[] = $oCriterion->parameterDisplay($value['data']); | ... | ... |