summaryrefslogtreecommitdiff
path: root/includes/database/select.inc
diff options
context:
space:
mode:
Diffstat (limited to 'includes/database/select.inc')
-rw-r--r--includes/database/select.inc4
1 files changed, 2 insertions, 2 deletions
diff --git a/includes/database/select.inc b/includes/database/select.inc
index b071c7454..16c352ea3 100644
--- a/includes/database/select.inc
+++ b/includes/database/select.inc
@@ -501,11 +501,11 @@ class SelectQueryExtender implements SelectQueryInterface {
}
public function hasAllTags() {
- return call_user_func_array(array($this->query, 'hasAllTags', func_get_args()));
+ return call_user_func_array(array($this->query, 'hasAllTags'), func_get_args());
}
public function hasAnyTag() {
- return call_user_func_array(array($this->query, 'hasAnyTags', func_get_args()));
+ return call_user_func_array(array($this->query, 'hasAnyTags'), func_get_args());
}
public function addMetaData($key, $object) {