Coding conventions - spacing
authorRob Church <robchurch@users.mediawiki.org>
Thu, 5 Jul 2007 18:34:31 +0000 (18:34 +0000)
committerRob Church <robchurch@users.mediawiki.org>
Thu, 5 Jul 2007 18:34:31 +0000 (18:34 +0000)
includes/GlobalFunctions.php

index bd30575..7248a02 100644 (file)
@@ -1667,7 +1667,7 @@ function wfMkdirParents( $fullDir, $mode = 0777 ) {
                return true;
        if( file_exists( $fullDir ) )
                return true;
-       return mkdir( str_replace('/',DIRECTORY_SEPARATOR,$fullDir) , $mode, true );
+       return mkdir( str_replace( '/', DIRECTORY_SEPARATOR, $fullDir ), $mode, true );
 }
 
 /**