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

Fixed double-count bug.

parent f17f298d
No related merge requests found
......@@ -205,7 +205,7 @@ class ResourceTags extends Gateway
$stats = (array)$result->current();
if ($extended) {
$stats['unique'] = count($this->getUniqueTags());
$stats['anonymous'] = count($this->getAnonymousCount());
$stats['anonymous'] = $this->getAnonymousCount();
}
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