summaryrefslogtreecommitdiff
path: root/includes/functions/functions_print.php
diff options
context:
space:
mode:
authorfisharebest <fisharebest@gmail.com>2010-09-12 11:15:45 +0000
committerfisharebest <fisharebest@gmail.com>2010-09-12 11:15:45 +0000
commit112857cfc4ef8ac582d3f1d5647d02d4e83d2f4f (patch)
tree7e7eafece901248ffd614b9821c7b7c52b698bda /includes/functions/functions_print.php
parentf51f3920a90e88256037cbdbaad4dc6bdef5c887 (diff)
downloadwebtrees-112857cfc4ef8ac582d3f1d5647d02d4e83d2f4f.tar.gz
webtrees-112857cfc4ef8ac582d3f1d5647d02d4e83d2f4f.tar.bz2
webtrees-112857cfc4ef8ac582d3f1d5647d02d4e83d2f4f.zip
To remove an element from the tab-sequence, use "-1", not "0"
Diffstat (limited to 'includes/functions/functions_print.php')
-rw-r--r--includes/functions/functions_print.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/includes/functions/functions_print.php b/includes/functions/functions_print.php
index 2ad7586239..dbe7e1dd7b 100644
--- a/includes/functions/functions_print.php
+++ b/includes/functions/functions_print.php
@@ -1100,7 +1100,7 @@ function help_link($help_topic, $module='') {
if ($_SESSION['show_context_help']) {
return
- '<a class="help" tabindex="0" href="javascript: '.$help_topic.'" onclick="helpPopup(\''.$help_topic.'\',\''.$module.'\'); return false;">&nbsp;'.
+ '<a class="help" tabindex="-1" href="javascript: '.$help_topic.'" onclick="helpPopup(\''.$help_topic.'\',\''.$module.'\'); return false;">&nbsp;'.
($WT_USE_HELPIMG ? '<img src="'.$WT_IMAGES['help'].'" class="icon" width="15" height="15" alt="" />' : i18n::translate('?')).
'&nbsp;</a>';
} else {