]> git.mxchange.org Git - friendica.git/commitdiff
Fixed E_NOTICE when no 'term' was provided (#5391)
authorRoland Häder <Quix0r@users.noreply.github.com>
Wed, 18 Jul 2018 19:41:24 +0000 (21:41 +0200)
committerHypolite Petovan <mrpetovan@eml.cc>
Wed, 18 Jul 2018 19:41:24 +0000 (15:41 -0400)
* Fixed E_NOTICE when no 'term' was provided, maybe better encapsulate this whole
$_GET, $_POST and $_SESSION thing into a `Request` class?

Signed-off-by: Roland Häder <roland@mxchange.org>
* Rewrote to recommendation by @MrPetovan which results in really nicer code.

Signed-off-by: Roland Häder <roland@mxchange.org>
mod/filer.php

index 190b6f78acb13d2729b3c1162c0634d49b295687..9b0017322c993e229f2253703e83d7bcc6ae99fd 100644 (file)
@@ -15,7 +15,7 @@ function filer_content(App $a)
                killme();
        }
 
-       $term = unxmlify(trim($_GET['term']));
+       $term = unxmlify(trim(defaults($_GET, 'term', '')));
        $item_id = (($a->argc > 1) ? intval($a->argv[1]) : 0);
 
        logger('filer: tag ' . $term . ' item ' . $item_id);