From b677192582bafa451c45dd8f1375341b2e3206c2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bartosz=20Dziewo=C5=84ski?= Date: Wed, 4 Oct 2017 18:58:10 +0200 Subject: [PATCH] Do not special-case ULS and "Not logged in" in RTL in personal bar Follow-up to 5d0a07bf9dac66a9b705865b5c675f2be960e4e6. Bug: T48947 Bug: T177312 Change-Id: I65c0961d19885c262fdaebf4ee199e1d1e6d5fe6 --- VectorTemplate.php | 12 ++---------- 1 file changed, 2 insertions(+), 10 deletions(-) diff --git a/VectorTemplate.php b/VectorTemplate.php index 7ed0675..abdf021 100644 --- a/VectorTemplate.php +++ b/VectorTemplate.php @@ -438,19 +438,11 @@ class VectorTemplate extends BaseTemplate { unset( $personalTools[ 'uls' ] ); } - if ( !$this->data[ 'rtl' ] ) { - echo $langSelector; - echo $notLoggedIn; - } - + echo $langSelector; + echo $notLoggedIn; foreach ( $personalTools as $key => $item ) { echo $this->makeListItem( $key, $item ); } - - if ( $this->data[ 'rtl' ] ) { - echo $notLoggedIn; - echo $langSelector; - } ?>