fix for bug 433: Title attribute on undelete button wrong

This commit is contained in:
Brion Vibber 2004-10-10 13:17:56 +00:00
parent 5b2857e2b6
commit 8bc18f9046

View file

@ -511,7 +511,7 @@ class SkinPHPTal extends Skin {
//article doesn't exist or is deleted
if($wgUser->isSysop()){
if( $n = $wgTitle->isDeleted() ) {
$content_actions['delete'] = array(
$content_actions['undelete'] = array(
'class' => false,
'text' => wfMsg( "undelete_short", $n ),
'href' => $this->makeSpecialUrl('Undelete/'.$this->thispage)