indentation consistency

git-svn-id: http://svn.automattic.com/wordpress/trunk@15681 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
dd32 2010-10-02 03:08:50 +00:00
parent 26bf32ac3e
commit ce479b392f
1 changed files with 5 additions and 3 deletions

View File

@ -39,8 +39,10 @@ if ( file_exists( ABSPATH . 'wp-config.php') ) {
// A config file doesn't exist
// Set a path for the link to the installer
if (strpos($_SERVER['PHP_SELF'], 'wp-admin') !== false) $path = '';
else $path = 'wp-admin/';
if ( strpos($_SERVER['PHP_SELF'], 'wp-admin') !== false )
$path = '';
else
$path = 'wp-admin/';
// Die with an error message
require_once( ABSPATH . '/wp-includes/classes.php' );
@ -51,4 +53,4 @@ if ( file_exists( ABSPATH . 'wp-config.php') ) {
}
?>
?>