Index: trunk/phase3/includes/GlobalFunctions.php |
— | — | @@ -2144,7 +2144,11 @@ |
2145 | 2145 | if ( is_null( $mode ) ) |
2146 | 2146 | $mode = $wgDirectoryMode; |
2147 | 2147 | |
| 2148 | + // Turn off the normal warning, we're doing our own below |
| 2149 | + wfSuppressWarnings(); |
2148 | 2150 | $ok = mkdir( $dir, $mode, true ); // PHP5 <3 |
| 2151 | + wfRestoreWarnings(); |
| 2152 | + |
2149 | 2153 | if( !$ok ) { |
2150 | 2154 | // PHP doesn't report the path in its warning message, so add our own to aid in diagnosis. |
2151 | 2155 | trigger_error( __FUNCTION__ . ": failed to mkdir \"$dir\" mode $mode", E_USER_WARNING ); |