Remove padlock icon from login link
authorChad Horohoe <chadh@wikimedia.org>
Mon, 19 Aug 2013 17:31:38 +0000 (10:31 -0700)
committerDemon <chadh@wikimedia.org>
Tue, 20 Aug 2013 00:13:56 +0000 (00:13 +0000)
Change-Id: I021f7a92b84e73502328d8186dc7ca1e1946ca0d

includes/SkinTemplate.php

index bce9ca4..69e551e 100644 (file)
@@ -701,13 +701,11 @@ class SkinTemplate extends Skin {
                                'text' => $this->msg( $loginlink )->text(),
                                'href' => self::makeSpecialUrl( 'Userlogin', $returnto, $proto ),
                                'active' => $title->isSpecial( 'Userlogin' ) && ( $loginlink == 'nav-login-createaccount' || !$is_signup ),
-                               'class' => $wgSecureLogin ? 'link-https' : ''
                        );
                        $createaccount_url = array(
                                'text' => $this->msg( 'createaccount' )->text(),
                                'href' => self::makeSpecialUrl( 'Userlogin', "$returnto&type=signup", $proto ),
                                'active' => $title->isSpecial( 'Userlogin' ) && $is_signup,
-                               'class' => $wgSecureLogin ? 'link-https' : ''
                        );
 
                        if ( $this->showIPinHeader() ) {