From: Brion Vibber Date: Fri, 2 Sep 2005 05:18:02 +0000 (+0000) Subject: * (bug 2078) Don't hide watch tab on preview X-Git-Tag: 1.6.0~1737 X-Git-Url: http://git.cyclocoop.org/fichier?a=commitdiff_plain;h=9280cc14b1ddb67c57431ed8c61a88d6c8d6d4b6;p=lhc%2Fweb%2Fwiklou.git * (bug 2078) Don't hide watch tab on preview --- diff --git a/RELEASE-NOTES b/RELEASE-NOTES index 4c50dfe441..6c3c4fee48 100644 --- a/RELEASE-NOTES +++ b/RELEASE-NOTES @@ -78,6 +78,7 @@ fully support the editing toolbar, but was found to be too confusing. * Don't override edit conflict suppression on section edits; section merging should provide the expected transparency here and fits usage patterns better. * (bug 3292) Fix move-over-redirect test when current entries are not plaintext +* (bug 2078) Don't hide watch tab on preview === Caveats === diff --git a/includes/SkinTemplate.php b/includes/SkinTemplate.php index d88aea79f3..9430aeea9e 100644 --- a/includes/SkinTemplate.php +++ b/includes/SkinTemplate.php @@ -650,7 +650,7 @@ class SkinTemplate extends Skin { } wfProfileOut( "$fname-live" ); - if( $this->loggedin and $action != 'submit' ) { + if( $this->loggedin ) { if( !$this->mTitle->userIsWatching()) { $content_actions['watch'] = array( 'class' => ($action == 'watch' or $action == 'unwatch') ? 'selected' : false,