From 8bc18f90464d011b139b0f6ef61bcaa9239311cd Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Sun, 10 Oct 2004 13:17:56 +0000 Subject: [PATCH] fix for bug 433: Title attribute on undelete button wrong --- includes/SkinPHPTal.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/SkinPHPTal.php b/includes/SkinPHPTal.php index c983408978..a07203fd96 100644 --- a/includes/SkinPHPTal.php +++ b/includes/SkinPHPTal.php @@ -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) -- 2.20.1