Index: trunk/phase3/includes/Parser.php |
— | — | @@ -4337,7 +4337,7 @@ |
4338 | 4338 | if ( count( $matches ) == 0 ) { |
4339 | 4339 | continue; |
4340 | 4340 | } |
4341 | | - $tp = Title::newFromText( $matches[1] ); |
| 4341 | + $tp = Title::newFromText( urldecode( $matches[1] ) ); |
4342 | 4342 | $nt =& $tp; |
4343 | 4343 | if( is_null( $nt ) ) { |
4344 | 4344 | # Bogus title. Ignore these so we don't bomb out later. |
Index: trunk/phase3/RELEASE-NOTES |
— | — | @@ -223,6 +223,7 @@ |
224 | 224 | * (bug 13866) skins/common/shared.css - invalid attribute fixing |
225 | 225 | * Hide edit section links on Special:Undelete |
226 | 226 | * (bug 13860) Fix "Justify paragraphs" option for Modern skin |
| 227 | +* (bug 11659) Urldecode image names in galleries |
227 | 228 | |
228 | 229 | |
229 | 230 | === API changes in 1.13 === |