Commit 0a7ffbb440dd9e20a4ec9be287a0937688f93199
1 parent
73411e6e
KTS-1957
"Colon missing inside of conditions.php code. " Fixed. Reviewed By: Conrad git-svn-id: https://kt-dms.svn.sourceforge.net/svnroot/kt-dms/trunk@6566 c91229c3-7414-0410-bfa2-8a42b809f60b
Showing
1 changed file
with
1 additions
and
1 deletions
plugins/ktcore/admin/conditions.php
| ... | ... | @@ -120,7 +120,7 @@ class KTConditionDispatcher extends KTAdminDispatcher { |
| 120 | 120 | foreach ($aSubgroup['values'] as $iv => $t) { |
| 121 | 121 | $datavars =& $aSubgroup['values'][$iv]; |
| 122 | 122 | $oCriterion = $oCriteriaRegistry->getCriterion($datavars['type']); |
| 123 | - if($oCriterion == null || $oCriterion == "" || PEAR:isError($oCriterion)) { | |
| 123 | + if($oCriterion == null || $oCriterion == "" || PEAR::isError($oCriterion)) { | |
| 124 | 124 | $this->errorRedirectToMain('Criterion error'); |
| 125 | 125 | } |
| 126 | 126 | $datavars['typename'] = $oCriterion->sDisplay; | ... | ... |