From: ArthurHoaro Date: Sun, 12 Jul 2015 09:36:42 +0000 (+0200) Subject: Fixes warning 'Undefined index: searchtags' while filtering by tags. X-Git-Tag: v0.5.0~8 X-Git-Url: https://git.immae.eu/?p=github%2Fshaarli%2FShaarli.git;a=commitdiff_plain;h=6ac95d9cf1459a2edada2eee323a13334e65b714 Fixes warning 'Undefined index: searchtags' while filtering by tags. Happened if there were not any searchtags already present in the query. --- diff --git a/index.php b/index.php index 5f173f4d..a0195db7 100644 --- a/index.php +++ b/index.php @@ -1122,7 +1122,11 @@ function renderPage() // Check if this tag is already in the search query and ignore it if it is. // Each tag is always separated by a space - $current_tags = explode(' ', $params['searchtags']); + if (isset($params['searchtags'])) { + $current_tags = explode(' ', $params['searchtags']); + } else { + $current_tags = array(); + } $addtag = true; foreach ($current_tags as $value) { if ($value === $_GET['addtag']) {