diff options
author | Mario <mario@mariovavti.com> | 2018-11-14 09:30:54 +0100 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2018-11-14 09:30:54 +0100 |
commit | 6ed944397222a519bfa11947c6484a37dde0a40a (patch) | |
tree | 0eff1c6f018e75db201458372736a5708f766287 /Zotlabs | |
parent | 08e0f172ded6abcf8175d9f133d4aa2cf2ec2b4e (diff) | |
parent | f1d168f781fc14e55b85b6e0a4e214d18f2ec969 (diff) | |
download | volse-hubzilla-6ed944397222a519bfa11947c6484a37dde0a40a.tar.gz volse-hubzilla-6ed944397222a519bfa11947c6484a37dde0a40a.tar.bz2 volse-hubzilla-6ed944397222a519bfa11947c6484a37dde0a40a.zip |
Merge branch 'patch-20181113b' into 'dev'
Patch 20181113b
See merge request hubzilla/core!1395
Diffstat (limited to 'Zotlabs')
-rw-r--r-- | Zotlabs/Module/Search.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Zotlabs/Module/Search.php b/Zotlabs/Module/Search.php index 272bbdac1..838f9d6b9 100644 --- a/Zotlabs/Module/Search.php +++ b/Zotlabs/Module/Search.php @@ -227,9 +227,9 @@ class Search extends \Zotlabs\Web\Controller { } if($tag) - $o .= '<h2>' . sprintf( t('Items tagged with: %s'),htmlspecialchars($search, ENT_COMPAT,'UTF-8')) . '</h2>'; + $o .= '<h2>' . sprintf( t('Items tagged with: %s'),$search) . '</h2>'; else - $o .= '<h2>' . sprintf( t('Search results for: %s'),htmlspecialchars($search, ENT_COMPAT,'UTF-8')) . '</h2>'; + $o .= '<h2>' . sprintf( t('Search results for: %s'),$search) . '</h2>'; $o .= conversation($items,'search',$update,'client'); |