Index: trunk/phase3/includes/Parser.php |
— | — | @@ -4366,6 +4366,9 @@ |
4367 | 4367 | if ( count( $matches ) == 0 ) { |
4368 | 4368 | continue; |
4369 | 4369 | } |
| 4370 | + |
| 4371 | + if ( strpos( $matches[0], '%' ) !== false ) |
| 4372 | + $matches[1] = urldecode( $matches[1] ); |
4370 | 4373 | $tp = Title::newFromText( $matches[1] ); |
4371 | 4374 | $nt =& $tp; |
4372 | 4375 | if( is_null( $nt ) ) { |
Index: trunk/phase3/RELEASE-NOTES |
— | — | @@ -318,6 +318,7 @@ |
319 | 319 | * (bug 14370) When a grouppage-x message does not exist the entry on the |
320 | 320 | ListGroupRights special page links to the main namespace page not the project |
321 | 321 | namespace page. |
| 322 | +* (bug 11659) Urldecode image names in galleries |
322 | 323 | |
323 | 324 | === API changes in 1.13 === |
324 | 325 | |