* simplified file description header or load.php
[lhc/web/wiklou.git] / maintenance / patchSql.php
index 6071323..ddfabbb 100644 (file)
@@ -21,7 +21,7 @@
  * @ingroup Maintenance
  */
 
-require_once( dirname(__FILE__) . '/Maintenance.php' );
+require_once( dirname( __FILE__ ) . '/Maintenance.php' );
 
 class PatchSql extends Maintenance {
        public function __construct() {
@@ -30,22 +30,22 @@ class PatchSql extends Maintenance {
                $this->addArg( 'patch-name', 'Name of the patch file, either full path or in maintenance/archives' );
        }
 
-       protected function getDbType() {
+       public function getDbType() {
                return Maintenance::DB_ADMIN;
        }
 
        public function execute() {
                $dbw = wfGetDB( DB_MASTER );
-               foreach( $this->mArgs as $arg ) {
+               foreach ( $this->mArgs as $arg ) {
                        $files = array(
                                $arg,
                                DatabaseBase::patchPath( $arg ),
                                DatabaseBase::patchPath( "patch-$arg.sql" ),
                        );
-                       foreach( $files as $file ) {
-                               if( file_exists( $file ) ) {
+                       foreach ( $files as $file ) {
+                               if ( file_exists( $file ) ) {
                                        $this->output( "$file ...\n" );
-                                       $dbw->fileSource( $file );
+                                       $dbw->sourceFile( $file );
                                        continue 2;
                                }
                        }