From: Brion Vibber Date: Thu, 29 Jul 2004 02:18:27 +0000 (+0000) Subject: Mark unwatch button as ca-unwatch rather than ca-watch to fix the tooltip. X-Git-Tag: 1.5.0alpha1~2570 X-Git-Url: http://git.cyclocoop.org/%24image?a=commitdiff_plain;h=a5a174cfe0b835f42cefbbbbd0f60213ec0a2ac1;p=lhc%2Fweb%2Fwiklou.git Mark unwatch button as ca-unwatch rather than ca-watch to fix the tooltip. * [ 993438 ] Wrong hint for "unwatch" button --- diff --git a/includes/SkinPHPTal.php b/includes/SkinPHPTal.php index 01ff30e6da..059afff9f1 100644 --- a/includes/SkinPHPTal.php +++ b/includes/SkinPHPTal.php @@ -429,7 +429,7 @@ 'text' => wfMsg('watch'), 'href' => $this->makeUrl($this->thispage, 'action=watch')); } else { - $content_actions['watch'] = array('class' => ($action == 'unwatch' or $action == 'watch') ? 'selected' : false, + $content_actions['unwatch'] = array('class' => ($action == 'unwatch' or $action == 'watch') ? 'selected' : false, 'text' => wfMsg('unwatch'), 'href' => $this->makeUrl($this->thispage, 'action=unwatch')); }