summaryrefslogtreecommitdiff
path: root/includes/database/select.inc
diff options
context:
space:
mode:
authorDavid Rothstein <drothstein@gmail.com>2014-05-05 12:34:18 -0400
committerDavid Rothstein <drothstein@gmail.com>2014-05-05 12:34:18 -0400
commit9fb4d89ae8f875efd44de30a566baddc3e499b2e (patch)
tree2828d8a5e591f04759b09e40ed9499bb6e841cd1 /includes/database/select.inc
parentf91bb951d18a50653cb1937f89b6e7134817c29b (diff)
downloadbrdo-9fb4d89ae8f875efd44de30a566baddc3e499b2e.tar.gz
brdo-9fb4d89ae8f875efd44de30a566baddc3e499b2e.tar.bz2
Issue #2065917 by SpadXIII, andrewbelcher, kboopathi: SelectQueryExtender::hasAnyTag uses hasAnyTags which doesn't exist.
Diffstat (limited to 'includes/database/select.inc')
-rw-r--r--includes/database/select.inc2
1 files changed, 1 insertions, 1 deletions
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) {