Commit 84faa48e90f4251c7899e4aac2c0c5b7fad635dc
1 parent
29482585
Merged in from DEV trunk...
KTS-2594 "KTUtil::computePeriodToDate calling itself recursively resulting in dashboard failing on Document Indexer statistics" Fixed. Committed By: Conrad Vermeulen Reviewed By: Kevin Fourie git-svn-id: https://kt-dms.svn.sourceforge.net/svnroot/kt-dms/STABLE/trunk@7582 c91229c3-7414-0410-bfa2-8a42b809f60b
Showing
1 changed file
with
1 additions
and
1 deletions
lib/util/ktutil.inc
| ... | ... | @@ -82,7 +82,7 @@ class KTUtil { |
| 82 | 82 | |
| 83 | 83 | static function computePeriodToDate($start, $suffix = null, $returnArray=false) |
| 84 | 84 | { |
| 85 | - return KTUtil::computePeriodToDate(time() - $start, $suffix, $returnArray); | |
| 85 | + return KTUtil::computePeriod(time() - $start, $suffix, $returnArray); | |
| 86 | 86 | } |
| 87 | 87 | |
| 88 | 88 | static function filesizeToString($filesize) | ... | ... |