diff options
author | jenkins-bot <jenkins-bot@gerrit.wikimedia.org> | 2014-03-01 16:59:15 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@wikimedia.org> | 2014-03-01 16:59:15 +0000 |
commit | be7ee7d714b63f8bf5c07944b7eab9f6af2d9a1d (patch) | |
tree | 40af9cc8421bd8638217a14c1025f4913b7573ab /includes/SkinTemplate.php | |
parent | 26ebf8613ded4693fedb9226d0f4bb471af9fd85 (diff) | |
parent | 172860042f883481c041b876cd986360563b46c0 (diff) | |
download | mediawikicore-be7ee7d714b63f8bf5c07944b7eab9f6af2d9a1d.tar.gz mediawikicore-be7ee7d714b63f8bf5c07944b7eab9f6af2d9a1d.zip |
Merge "Provide direction hinting in the personal toolbar"
Diffstat (limited to 'includes/SkinTemplate.php')
-rw-r--r-- | includes/SkinTemplate.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/includes/SkinTemplate.php b/includes/SkinTemplate.php index 4f0e1fe850aa..b13d285f3d10 100644 --- a/includes/SkinTemplate.php +++ b/includes/SkinTemplate.php @@ -1596,7 +1596,7 @@ abstract class BaseTemplate extends QuickTemplate { if ( isset( $plink['active'] ) ) { $ptool['active'] = $plink['active']; } - foreach ( array( 'href', 'class', 'text' ) as $k ) { + foreach ( array( 'href', 'class', 'text', 'dir' ) as $k ) { if ( isset( $plink[$k] ) ) { $ptool['links'][0][$k] = $plink[$k]; } |