Index: trunk/phase3/CREDITS |
— | — | @@ -71,6 +71,7 @@ |
72 | 72 | * Mormegil |
73 | 73 | * Nathan Larson |
74 | 74 | * Nikolaos S. Karastathis |
| 75 | +* Olaf Lenz |
75 | 76 | * Paul Copperman |
76 | 77 | * RememberTheDot |
77 | 78 | * ST47 |
Index: trunk/phase3/includes/parser/CoreParserFunctions.php |
— | — | @@ -349,7 +349,7 @@ |
350 | 350 | if( $file ) { |
351 | 351 | $url = $file->getFullUrl(); |
352 | 352 | if( $option == 'nowiki' ) { |
353 | | - return "<nowiki>$url</nowiki>"; |
| 353 | + return array( $url, 'nowiki' => true ); |
354 | 354 | } |
355 | 355 | return $url; |
356 | 356 | } else { |
Index: trunk/phase3/RELEASE-NOTES |
— | — | @@ -446,8 +446,8 @@ |
447 | 447 | * (bug 16026) revision-info, revision-info-current, cannotdelete, |
448 | 448 | redirectedfrom and historywarning messages now use Wiki text rather than raw |
449 | 449 | HTML markup |
| 450 | +* (bug 13835) Fix rendering of {{filepath:Wiki.png|nowiki}} |
450 | 451 | |
451 | | - |
452 | 452 | === API changes in 1.14 === |
453 | 453 | |
454 | 454 | * Registration time of users registered before the DB field was created is now |