diff options
| author | 2023-06-13 22:40:28 +0200 | |
|---|---|---|
| committer | 2023-06-13 22:40:28 +0200 | |
| commit | 3fe68a3285e0a9f5268a64414cd6e7bb2aa8f178 (patch) | |
| tree | 333495dfd955c2f1cb2805a813e2e73c550ce236 /app/Controllers/extensionController.php | |
| parent | 3d9e0c47ecb19fea4f194d3a4a81d7d931e2bc0b (diff) | |
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
Diffstat (limited to 'app/Controllers/extensionController.php')
| -rw-r--r-- | app/Controllers/extensionController.php | 2 |
1 files changed, 1 insertions, 1 deletions
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'); } |
