jerrylanejohns
If you logout and back in does it still show incorrectly?
If it still shows incorrectly I'm curious if this patch will fix the issue for you:
diff --git a/include/class.search.php b/include/class.search.php
index f0b770f0..9d0cd0f3 100755
--- a/include/class.search.php
+++ b/include/class.search.php
@@ -992,12 +992,12 @@ class SavedQueue extends CustomQueue {
$counts['q'.$queue->getId()] = '-';
}
- try {
- $counts = array_merge($counts, $query->values()->one());
- } catch (Exception $ex) {
+ //try {
+ // $counts = array_merge($counts, $query->values()->one());
+ //} catch (Exception $ex) {
foreach ($queues as $q)
$counts['q'.$q->getId()] = $q->getTotal();
- }
+ //}
// Always cache the results
self::storeCounts($key, $counts, $ttl);
Cheers.