notes for r85546
[lhc/web/wiklou.git] / maintenance / patchSql.php
index ddfabbb..1f96d62 100644 (file)
@@ -39,8 +39,8 @@ class PatchSql extends Maintenance {
                foreach ( $this->mArgs as $arg ) {
                        $files = array(
                                $arg,
-                               DatabaseBase::patchPath( $arg ),
-                               DatabaseBase::patchPath( "patch-$arg.sql" ),
+                               $dbw->patchPath( $arg ),
+                               $dbw->patchPath( "patch-$arg.sql" ),
                        );
                        foreach ( $files as $file ) {
                                if ( file_exists( $file ) ) {
@@ -56,4 +56,4 @@ class PatchSql extends Maintenance {
 }
 
 $maintClass = "PatchSql";
-require_once( DO_MAINTENANCE );
+require_once( RUN_MAINTENANCE_IF_MAIN );