Fixing E_NOTICE
[lhc/web/wiklou.git] / includes / SpecialLockdb.php
index 57c20b7..4f140df 100644 (file)
@@ -36,7 +36,7 @@ function wfSpecialLockdb() {
 }
 
 /**
- *
+ * A form to make the database readonly (eg for maintenance purposes).
  * @addtogroup SpecialPage
  */
 class DBLockForm {
@@ -51,7 +51,7 @@ class DBLockForm {
                global $wgOut, $wgUser;
 
                $wgOut->setPagetitle( wfMsg( 'lockdb' ) );
-               $wgOut->addWikiText( wfMsg( 'lockdbtext' ) );
+               $wgOut->addWikiMsg( 'lockdbtext' );
 
                if ( "" != $err ) {
                        $wgOut->setSubtitle( wfMsg( 'formerror' ) );
@@ -104,7 +104,7 @@ END
                        # This used to show a file not found error, but the likeliest reason for fopen()
                        # to fail at this point is insufficient permission to write to the file...good old
                        # is_writable() is plain wrong in some cases, it seems...
-                       $this->notWritable();
+                       self::notWritable();
                        return;
                }
                fwrite( $fp, $this->reason );
@@ -121,14 +121,14 @@ END
 
                $wgOut->setPagetitle( wfMsg( 'lockdb' ) );
                $wgOut->setSubtitle( wfMsg( 'lockdbsuccesssub' ) );
-               $wgOut->addWikiText( wfMsg( 'lockdbsuccesstext' ) );
+               $wgOut->addWikiMsg( 'lockdbsuccesstext' );
        }
        
        public static function notWritable() {
                global $wgOut;
-               $wgOut->errorPage( 'lockdb', 'lockfilenotwritable' );
+               $wgOut->showErrorPage( 'lockdb', 'lockfilenotwritable' );
        }
        
 }
 
-?>
+