specify function name in query
authorTim Starling <tstarling@users.mediawiki.org>
Sun, 2 Apr 2006 03:18:48 +0000 (03:18 +0000)
committerTim Starling <tstarling@users.mediawiki.org>
Sun, 2 Apr 2006 03:18:48 +0000 (03:18 +0000)
includes/SpecialLog.php

index 52b388b..54ff5b0 100644 (file)
@@ -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 );
        }