Skip to content
Snippets Groups Projects
Commit af5e692d authored by Demian Katz's avatar Demian Katz
Browse files

Fixed double-count bug.

parent f17f298d
Branches
Tags
No related merge requests found
...@@ -205,7 +205,7 @@ class ResourceTags extends Gateway ...@@ -205,7 +205,7 @@ class ResourceTags extends Gateway
$stats = (array)$result->current(); $stats = (array)$result->current();
if ($extended) { if ($extended) {
$stats['unique'] = count($this->getUniqueTags()); $stats['unique'] = count($this->getUniqueTags());
$stats['anonymous'] = count($this->getAnonymousCount()); $stats['anonymous'] = $this->getAnonymousCount();
} }
return $stats; return $stats;
} }
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment