Index: trunk/phase3/includes/GlobalFunctions.php |
— | — | @@ -2008,6 +2008,9 @@ |
2009 | 2009 | if ( is_null( $mode ) ) |
2010 | 2010 | $mode = $wgDirectoryMode; |
2011 | 2011 | |
| 2012 | + if ( !is_writable( $dir ) ) { |
| 2013 | + return false; |
| 2014 | + } |
2012 | 2015 | return mkdir( $dir, $mode, true ); // PHP5 <3 |
2013 | 2016 | } |
2014 | 2017 | |