Commit 75bf5a4e5d56ce2d1572db9836f98d07735ab830
1 parent
c6824dc0
Merged in from DEV trunk...
KTC-260 "'Warning' error when accessing a Tag Cloud" Fixed. Description of work done... Committed By: Jalaloedien Abrahams Reviewed By: Kevin Fourie git-svn-id: https://kt-dms.svn.sourceforge.net/svnroot/kt-dms/STABLE/branches/3.4.5-Release-Branch@7718 c91229c3-7414-0410-bfa2-8a42b809f60b
Showing
1 changed file
with
1 additions
and
2 deletions
lib/browse/criteriaregistry.php
| ... | ... | @@ -83,9 +83,8 @@ class KTCriteriaRegistry { |
| 83 | 83 | $sClassName = $aDetails[0]; |
| 84 | 84 | $oCriterion =& new $sClassName(); |
| 85 | 85 | |
| 86 | - | |
| 87 | 86 | if(is_array($aDetails[3])) { |
| 88 | - call_user_func_array(array(&$oCriterion, 'initialize'), $aDetails[3]); | |
| 87 | + @call_user_func_array(array(&$oCriterion, 'initialize'), $aDetails[3]); | |
| 89 | 88 | } |
| 90 | 89 | |
| 91 | 90 | ... | ... |