From a433c3d045d139b9b9dc1e76fe52a46a9a254a48 Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Mon, 22 Jan 2007 17:59:43 +0000 Subject: [PATCH] * (bug 8719) Firefox release notes lie! Fix tooltips for Firefox 2 on x11; accesskeys default settings appear to be same as Windows. --- RELEASE-NOTES | 2 ++ includes/DefaultSettings.php | 2 +- skins/common/wikibits.js | 4 +--- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/RELEASE-NOTES b/RELEASE-NOTES index 30fbf68f3d..f92d02062c 100644 --- a/RELEASE-NOTES +++ b/RELEASE-NOTES @@ -141,6 +141,8 @@ lighter making things easier to read. made with the new field left blank. * Allow sending per-user contribution requests to "contributions" query group * (bug 3717) Update user count for AuthPlugin account autocreation +* (bug 8719) Firefox release notes lie! Fix tooltips for Firefox 2 on x11; + accesskeys default settings appear to be same as Windows. == Languages updated == diff --git a/includes/DefaultSettings.php b/includes/DefaultSettings.php index ec85130ac5..2042f090a4 100644 --- a/includes/DefaultSettings.php +++ b/includes/DefaultSettings.php @@ -1109,7 +1109,7 @@ $wgCacheEpoch = '20030516000000'; * to ensure that client-side caches don't keep obsolete copies of global * styles. */ -$wgStyleVersion = '51'; +$wgStyleVersion = '52'; # Server-side caching: diff --git a/skins/common/wikibits.js b/skins/common/wikibits.js index 27d992d6ea..3ee63520dc 100644 --- a/skins/common/wikibits.js +++ b/skins/common/wikibits.js @@ -484,9 +484,7 @@ if (is_opera) { || navigator.userAgent.toLowerCase().indexOf('mac') != -1 || navigator.userAgent.toLowerCase().indexOf('konqueror') != -1 ) { tooltipAccessKeyPrefix = 'ctrl-'; -} else if (is_ff2_x11) { - tooltipAccessKeyPrefix = 'ctrl-shift-'; -} else if (is_ff2_win) { +} else if (is_ff2_x11 || is_ff2_win) { tooltipAccessKeyPrefix = 'alt-shift-'; } var tooltipAccessKeyRegexp = /\[(ctrl-)?(alt-)?(shift-)?(esc-)?.\]$/; -- 2.20.1