aboutsummaryrefslogtreecommitdiff
path: root/app/Controllers/feedController.php
diff options
context:
space:
mode:
authorGravatar Alexandre Alapetite <alexandre@alapetite.fr> 2023-04-07 16:12:03 +0200
committerGravatar GitHub <noreply@github.com> 2023-04-07 16:12:03 +0200
commitb6ac505f8fa0012fa48d2442dd98cabdaf122269 (patch)
tree76085b1e4a03c2b56f03f73f086fbc9bacd7919f /app/Controllers/feedController.php
parentdbbae15a8458679db0f4540dacdbdcff9c02ec8c (diff)
Fix login (#5271)
Fix https://github.com/FreshRSS/FreshRSS/issues/5270
Diffstat (limited to 'app/Controllers/feedController.php')
-rw-r--r--app/Controllers/feedController.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/Controllers/feedController.php b/app/Controllers/feedController.php
index 10719fb9e..63042ad1e 100644
--- a/app/Controllers/feedController.php
+++ b/app/Controllers/feedController.php
@@ -800,7 +800,7 @@ class FreshRSS_feed_Controller extends FreshRSS_ActionController {
break;
default:
$redirect_url = Minz_Request::paramString('r', true);
- if ($redirect_url !== '') {
+ if ($redirect_url == '') {
$redirect_url = array('c' => 'subscription', 'a' => 'index');
}
if (!Minz_Request::isPost()) {