wfSetBufferResults no longer referenced, kill.
authorDomas Mituzas <midom@users.mediawiki.org>
Thu, 10 Feb 2005 14:13:55 +0000 (14:13 +0000)
committerDomas Mituzas <midom@users.mediawiki.org>
Thu, 10 Feb 2005 14:13:55 +0000 (14:13 +0000)
includes/DatabaseFunctions.php

index 7d9f035..fd3c5ee 100644 (file)
@@ -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