From 52e925559e4eec4e50e69543c6d897f352700970 Mon Sep 17 00:00:00 2001 From: Michael Date: Sun, 3 Sep 2023 03:40:54 +0000 Subject: [PATCH] Acesskeys updated --- doc/Accesskeys.md | 3 +++ src/Module/Conversation/Channel.php | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/doc/Accesskeys.md b/doc/Accesskeys.md index df9629dc5..936e044ee 100644 --- a/doc/Accesskeys.md +++ b/doc/Accesskeys.md @@ -34,6 +34,9 @@ General * y - for you * f - followers * h - what's hot +* i - Images +* v - Videos +* d - Audio ../profile -------- diff --git a/src/Module/Conversation/Channel.php b/src/Module/Conversation/Channel.php index aeebf8df2..c80ba7673 100644 --- a/src/Module/Conversation/Channel.php +++ b/src/Module/Conversation/Channel.php @@ -173,7 +173,7 @@ class Channel extends BaseModule 'sel' => self::$content == self::AUDIO ? 'active' : '', 'title' => $this->l10n->t('Posts with audio'), 'id' => 'channel-audio-tab', - 'accesskey' => 'a' + 'accesskey' => 'd' ]; $tab_tpl = Renderer::getMarkupTemplate('common_tabs.tpl');