From da60098cfd5f5d4674e8fae003367b9dc5ca8669 Mon Sep 17 00:00:00 2001 From: Tim Starling Date: Sun, 2 Apr 2006 03:18:48 +0000 Subject: [PATCH] specify function name in query --- includes/SpecialLog.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/SpecialLog.php b/includes/SpecialLog.php index 52b388b662..54ff5b05e1 100644 --- a/includes/SpecialLog.php +++ b/includes/SpecialLog.php @@ -167,7 +167,7 @@ class LogReader { * @return ResultWrapper result object to return the relevant rows */ function getRows() { - $res = $this->db->query( $this->getQuery() ); + $res = $this->db->query( $this->getQuery(), 'LogReader::getRows' ); return $this->db->resultObject( $res ); } -- 2.20.1