aboutsummaryrefslogtreecommitdiff
path: root/engine/lib/tags.php
diff options
context:
space:
mode:
Diffstat (limited to 'engine/lib/tags.php')
-rw-r--r--engine/lib/tags.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/engine/lib/tags.php b/engine/lib/tags.php
index 388b88d5e..5ec06105c 100644
--- a/engine/lib/tags.php
+++ b/engine/lib/tags.php
@@ -102,9 +102,9 @@
$access = get_access_list();
$query = "SELECT {$CONFIG->dbprefix}msvalue.string as tag, count(msvalue.id) as total ";
- $query .= "FROM entities e join metadata md on md.entity_guid = e.guid ";
- $query .= " join entity_subtypes subtype on subtype.id = e.subtype ";
- $query .= " join metastrings msvalue on msvalue.id = md.value_id ";
+ $query .= "FROM {$CONFIG->dbprefix}entities e join {$CONFIG->dbprefix}metadata md on md.entity_guid = e.guid ";
+ $query .= " join {$CONFIG->dbprefix}entity_subtypes subtype on subtype.id = e.subtype ";
+ $query .= " join {$CONFIG->dbprefix}metastrings msvalue on msvalue.id = md.value_id ";
$query .= " where 1 ";