German localisation updates, patch by ray.
[lhc/web/wiklou.git] / includes / SpecialLockdb.php
index f4e0dd9..72c9242 100644 (file)
@@ -1,8 +1,7 @@
 <?php
 /**
  *
- * @package MediaWiki
- * @subpackage SpecialPage
+ * @addtogroup SpecialPage
  */
 
 /**
@@ -15,7 +14,7 @@ function wfSpecialLockdb() {
                $wgOut->permissionRequired( 'siteadmin' );
                return;
        }
-       
+
        # If the lock file isn't writable, we can do sweet bugger all
        global $wgReadOnlyFile;
        if( !is_writable( dirname( $wgReadOnlyFile ) ) ) {
@@ -37,9 +36,8 @@ function wfSpecialLockdb() {
 }
 
 /**
- *
- * @package MediaWiki
- * @subpackage SpecialPage
+ * A form to make the database readonly (eg for maintenance purposes).
+ * @addtogroup SpecialPage
  */
 class DBLockForm {
        var $reason = '';
@@ -53,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' ) );
@@ -106,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 );
@@ -123,14 +121,11 @@ 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' );
        }
-       
 }
-
-?>