Index: trunk/phase3/includes/SpecialMovepage.php |
— | — | @@ -78,6 +78,8 @@ |
79 | 79 | $wgOut->showErrorPage( 'notargettitle', 'notargettext' ); |
80 | 80 | return; |
81 | 81 | } |
| 82 | + $sk = $wgUser->getSkin(); |
| 83 | + $oldTitleLink = $sk->makeLinkObj( $ot ); |
82 | 84 | $oldTitle = $ot->getPrefixedText(); |
83 | 85 | |
84 | 86 | $encOldTitle = htmlspecialchars( $oldTitle ); |
— | — | @@ -151,7 +153,7 @@ |
152 | 154 | <table border='0'> |
153 | 155 | <tr> |
154 | 156 | <td align='$end'>{$movearticle}</td> |
155 | | - <td align='$start'><strong>{$oldTitle}</strong></td> |
| 157 | + <td align='$start'><strong>{$oldTitleLink}</strong></td> |
156 | 158 | </tr> |
157 | 159 | <tr> |
158 | 160 | <td align='$end'><label for='wpNewTitle'>{$newtitle}</label></td> |
Index: trunk/phase3/RELEASE-NOTES |
— | — | @@ -98,6 +98,7 @@ |
99 | 99 | * Special:Upload now lists permitted/prohibited file extensions. |
100 | 100 | * Split ambiguous filetype-badtype message into two new messages, |
101 | 101 | filetype-unwanted-type and filetype-banned-type. |
| 102 | +* Added link to the old title in Special:Movepage |
102 | 103 | |
103 | 104 | === Bug fixes in 1.12 === |
104 | 105 | |