From: Jan Schneider Date: Tue, 17 Nov 2009 22:33:14 +0000 (+0100) Subject: Always uppercase access key in the description title. X-Git-Url: https://git.internetallee.de/?a=commitdiff_plain;h=acdf6393e7c616e8a02280f0f73a775b3f8effb4;p=horde.git Always uppercase access key in the description title. --- diff --git a/framework/Core/lib/Horde.php b/framework/Core/lib/Horde.php index f8b7f9bda..6ae86f85c 100644 --- a/framework/Core/lib/Horde.php +++ b/framework/Core/lib/Horde.php @@ -1985,7 +1985,7 @@ HTML; $ak = self::getAccessKey($label, $nocheck); $attributes = 'title="' . self::stripAccessKey($label); if (!empty($ak)) { - $attributes .= sprintf(_(" (Accesskey %s)"), $ak); + $attributes .= sprintf(_(" (Accesskey %s)"), strtoupper($ak)); $attributes .= '" accesskey="' . $ak; }