Fix coding style
authorRoan Kattouw <catrope@users.mediawiki.org>
Sat, 2 Jan 2010 21:49:39 +0000 (21:49 +0000)
committerRoan Kattouw <catrope@users.mediawiki.org>
Sat, 2 Jan 2010 21:49:39 +0000 (21:49 +0000)
includes/specials/SpecialUserlogin.php

index b167f91..4337f98 100644 (file)
@@ -948,11 +948,9 @@ class LoginForm {
                }
 
                //Changes the title depending on permissions for creating account
-               if ($wgUser->isAllowed( 'createaccount' ))
-               {
+               if ( $wgUser->isAllowed( 'createaccount' ) ) {
                        $wgOut->setPageTitle( wfMsg( 'userlogin' ) );
-               } else
-               {
+               } else {
                        $wgOut->setPageTitle( wfMsg( 'userloginnocreate' ) );
                }