Index: trunk/phase3/includes/GlobalFunctions.php |
— | — | @@ -2064,6 +2064,8 @@ |
2065 | 2065 | if( strval( $dir ) === '' || file_exists( $dir ) ) |
2066 | 2066 | return true; |
2067 | 2067 | |
| 2068 | + $dir = str_replace( array( '\\', '/' ), DIRECTORY_SEPARATOR, $dir ); |
| 2069 | + |
2068 | 2070 | if ( is_null( $mode ) ) |
2069 | 2071 | $mode = $wgDirectoryMode; |
2070 | 2072 | |
Index: trunk/phase3/RELEASE-NOTES |
— | — | @@ -117,6 +117,7 @@ |
118 | 118 | * (bug 18718) Comma after a } create a error in IE |
119 | 119 | * (bug 18716) Removed redundant class in Modern skin CSS for category links and |
120 | 120 | tweaked spacing. |
| 121 | +* (bug 18656) Use proper directory separators in wfMkdirParents() |
121 | 122 | |
122 | 123 | == API changes in 1.16 == |
123 | 124 | |