From 032738d2e24655d4cecd58f42c6caaf159db319f Mon Sep 17 00:00:00 2001 From: Domas Mituzas Date: Thu, 10 Feb 2005 14:13:55 +0000 Subject: [PATCH] wfSetBufferResults no longer referenced, kill. --- includes/DatabaseFunctions.php | 18 ------------------ 1 file changed, 18 deletions(-) diff --git a/includes/DatabaseFunctions.php b/includes/DatabaseFunctions.php index 7d9f035779..fd3c5eea03 100644 --- a/includes/DatabaseFunctions.php +++ b/includes/DatabaseFunctions.php @@ -52,24 +52,6 @@ function &wfGetDB( $db = DB_LAST ) { return $wgLoadBalancer->getConnection( $db ); } -/** - * Turns buffering of SQL result - * Sets on (true) or off (false). Default is "on" and it should not be changed - * without good reasons. - * - * @param $newstate - * @param $dbi - * @return mixed|NULL Returns the previous state. -*/ -function wfBufferSQLResults( $newstate, $dbi = DB_LAST ) { - $db =& wfGetDB( $dbi ); - if ( $db !== false ) { - return $db->setBufferResults( $newstate ); - } else { - return NULL; - } -} - /** * Turns on (false) or off (true) the automatic generation and sending * of a "we're sorry, but there has been a database error" page on -- 2.20.1