aboutsummaryrefslogtreecommitdiffstats
path: root/langs.php
diff options
context:
space:
mode:
Diffstat (limited to 'langs.php')
-rw-r--r--langs.php7
1 files changed, 6 insertions, 1 deletions
diff --git a/langs.php b/langs.php
index 30988a266..a0b504e0f 100644
--- a/langs.php
+++ b/langs.php
@@ -123,9 +123,14 @@ foreach ($nav_list as $k => $v)
else
$title = $v;
- $list_menu[] = sprintf('<a href="%s"%s>%s</a>',
+ $accessKey = null;
+ if ($title == 'Mageia')
+ $accessKey = ' accesskey="1"';
+
+ $list_menu[] = sprintf('<a href="%s"%s%s>%s</a>',
$k,
$k == $sru ? ' class="sel"' : '',
+ $accessKey,
$title);
}