diff options
| author | 2025-01-10 08:13:09 +0100 | |
|---|---|---|
| committer | 2025-01-10 08:13:09 +0100 | |
| commit | 5368f38753a3e655ed3d7d7dfc7af2cc22de7980 (patch) | |
| tree | decb975aa750660cea965bf61399df2335493b9d /app/Controllers/authController.php | |
| parent | 3280ec617f8081bf0d5349e441ae564a42fdc500 (diff) | |
Reduce undeeded use of elvis operator ?: (#7204)
Diffstat (limited to 'app/Controllers/authController.php')
| -rw-r--r-- | app/Controllers/authController.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/Controllers/authController.php b/app/Controllers/authController.php index 700501371..d263d6486 100644 --- a/app/Controllers/authController.php +++ b/app/Controllers/authController.php @@ -255,7 +255,7 @@ class FreshRSS_auth_Controller extends FreshRSS_ActionController { # The trailing slash is necessary so that we don’t redirect to http://. # https://bz.apache.org/bugzilla/show_bug.cgi?id=61355#c13 } else { - return _url('auth', 'logout') ?: ''; + return _url('auth', 'logout'); } } } |
