From 5368f38753a3e655ed3d7d7dfc7af2cc22de7980 Mon Sep 17 00:00:00 2001 From: Alexandre Alapetite Date: Fri, 10 Jan 2025 08:13:09 +0100 Subject: Reduce undeeded use of elvis operator ?: (#7204) --- app/Controllers/authController.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'app/Controllers/authController.php') 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'); } } } -- cgit v1.2.3