From: Tim Starling Date: Sun, 2 Apr 2006 03:18:48 +0000 (+0000) Subject: specify function name in query X-Git-Tag: 1.6.0~80 X-Git-Url: https://git.cyclocoop.org/%27.WWW_URL.%27admin/?a=commitdiff_plain;h=da60098cfd5f5d4674e8fae003367b9dc5ca8669;p=lhc%2Fweb%2Fwiklou.git specify function name in query --- 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 ); }