From ff301288f2ea06d76606c05bccac5957e2873a94 Mon Sep 17 00:00:00 2001 From: Dries Buytaert Date: Sun, 11 Apr 2010 18:33:44 +0000 Subject: - Patch #348448 by mfb, c960657, marvil07, cdale, jpmckinney: fixed PHP strict warnings when running tests and for PHP 5.3. --- includes/database/select.inc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'includes/database') 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) { -- cgit v1.2.3