diff options
| author | 2019-04-08 23:19:50 +0200 | |
|---|---|---|
| committer | 2019-04-08 23:19:50 +0200 | |
| commit | 744a9e8cf00aef7dec0acfa5f90f0dcfa2ef8837 (patch) | |
| tree | ffa4b7671c71c837a1f8f6f47de9ae07ce738d80 /app/Controllers/configureController.php | |
| parent | d008b6c1a7488b99e77287ba14f1fff3ec1a116b (diff) | |
| parent | da53cc902c5e0ac2a05e92ad6b7780b6354d0438 (diff) | |
Merge pull request #2368 from FreshRSS/dev1.14.2
FreshRSS 1.14.2
Diffstat (limited to 'app/Controllers/configureController.php')
| -rwxr-xr-x | app/Controllers/configureController.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/app/Controllers/configureController.php b/app/Controllers/configureController.php index 16dd82121..6d3c4dcce 100755 --- a/app/Controllers/configureController.php +++ b/app/Controllers/configureController.php @@ -166,7 +166,8 @@ class FreshRSS_configure_Controller extends Minz_ActionController { * tab and up. */ public function shortcutAction() { - $this->view->list_keys = SHORTCUT_KEYS; + global $SHORTCUT_KEYS; + $this->view->list_keys = $SHORTCUT_KEYS; if (Minz_Request::isPost()) { FreshRSS_Context::$user_conf->shortcuts = validateShortcutList(Minz_Request::param('shortcuts')); |
