diff options
Diffstat (limited to 'Zotlabs/Module/Search.php')
-rw-r--r-- | Zotlabs/Module/Search.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Zotlabs/Module/Search.php b/Zotlabs/Module/Search.php index da4752186..c88bc4534 100644 --- a/Zotlabs/Module/Search.php +++ b/Zotlabs/Module/Search.php @@ -33,7 +33,7 @@ class Search extends Controller { require_once('include/security.php'); - $format = (($_REQUEST['format']) ? $_REQUEST['format'] : ''); + $format = $_REQUEST['format'] ?? ''; if ($format !== '') { $update = $load = 1; } |