Index: trunk/phase3/includes/EditPage.php |
— | — | @@ -138,7 +138,7 @@ |
139 | 139 | $wgMessageCache->loadAllMessages( $lang ); |
140 | 140 | $text = wfMsgGetKey( $message, false, $lang, false ); |
141 | 141 | if( wfEmptyMsg( $message, $text ) ) |
142 | | - $text = ''; |
| 142 | + $text = $this->getPreloadedText( $preload ); |
143 | 143 | } else { |
144 | 144 | # If requested, preload some text. |
145 | 145 | $text = $this->getPreloadedText( $preload ); |
Index: trunk/phase3/RELEASE-NOTES |
— | — | @@ -544,6 +544,7 @@ |
545 | 545 | * Password fields built with HTMLForm now still have the type="password" attribute |
546 | 546 | if $wgHtml5=false. |
547 | 547 | * (bug 20860) Entries on Special:Allmessages now have direct "edit" link |
| 548 | +* (bug 20836) Preload now works for MediaWiki namespace |
548 | 549 | |
549 | 550 | == API changes in 1.16 == |
550 | 551 | |