Merge "Do not special-case ULS and "Not logged in" in RTL in personal bar"

This commit is contained in:
jenkins-bot 2017-10-04 17:36:57 +00:00 committed by Gerrit Code Review
commit 9b58823eeb
1 changed files with 2 additions and 10 deletions

View File

@ -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;
}
?>
</ul>
</div>