Merge pull request #4501 from annando/fix-tag-search
Fix: Tag searches hadn't been stored as tags
This commit is contained in:
commit
3dac937f22
|
@ -146,7 +146,7 @@ function search_content(App $a) {
|
||||||
$tag = false;
|
$tag = false;
|
||||||
if (x($_GET,'tag')) {
|
if (x($_GET,'tag')) {
|
||||||
$tag = true;
|
$tag = true;
|
||||||
$search = ((x($_GET,'tag')) ? notags(trim(rawurldecode($_GET['tag']))) : '');
|
$search = (x($_GET,'tag') ? '#' . notags(trim(rawurldecode($_GET['tag']))) : '');
|
||||||
}
|
}
|
||||||
|
|
||||||
// contruct a wrapper for the search header
|
// contruct a wrapper for the search header
|
||||||
|
|
Loading…
Reference in New Issue
Block a user