From 9fb4d89ae8f875efd44de30a566baddc3e499b2e Mon Sep 17 00:00:00 2001 From: David Rothstein Date: Mon, 5 May 2014 12:34:18 -0400 Subject: Issue #2065917 by SpadXIII, andrewbelcher, kboopathi: SelectQueryExtender::hasAnyTag uses hasAnyTags which doesn't exist. --- includes/database/select.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'includes/database') diff --git a/includes/database/select.inc b/includes/database/select.inc index e036904be..70c03a283 100644 --- a/includes/database/select.inc +++ b/includes/database/select.inc @@ -596,7 +596,7 @@ class SelectQueryExtender implements SelectQueryInterface { public function hasAnyTag() { $args = func_get_args(); - return call_user_func_array(array($this->query, 'hasAnyTags'), $args); + return call_user_func_array(array($this->query, 'hasAnyTag'), $args); } public function addMetaData($key, $object) { -- cgit v1.2.3