From 3fe68a3285e0a9f5268a64414cd6e7bb2aa8f178 Mon Sep 17 00:00:00 2001 From: Alexandre Alapetite Date: Tue, 13 Jun 2023 22:40:28 +0200 Subject: Allow deep link to extension configuration (#5449) * Allow deep link to extension configuration Full screen * Support slider * Add aside_configure Fix https://github.com/FreshRSS/FreshRSS/pull/5449#issuecomment-1588089769 --- app/Controllers/extensionController.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'app/Controllers') diff --git a/app/Controllers/extensionController.php b/app/Controllers/extensionController.php index 4b440327d..a5eec8f21 100644 --- a/app/Controllers/extensionController.php +++ b/app/Controllers/extensionController.php @@ -80,7 +80,7 @@ class FreshRSS_extension_Controller extends FreshRSS_ActionController { public function configureAction(): void { if (Minz_Request::paramBoolean('ajax')) { $this->view->_layout(null); - } else { + } elseif (Minz_Request::paramBoolean('slider')) { $this->indexAction(); $this->view->_path('extension/index.phtml'); } -- cgit v1.2.3