diff options
author | zotlabs <mike@macgirvin.com> | 2019-11-12 20:25:25 -0800 |
---|---|---|
committer | zotlabs <mike@macgirvin.com> | 2019-11-12 20:25:25 -0800 |
commit | 2f4c619d510e64eeda05366e485d50f490cefebe (patch) | |
tree | f339fc26534a52d3bb4926ac9941dbe54c0b4282 | |
parent | 6e36820b1bbc35bc3d26ff4eca2b63a386b30462 (diff) | |
download | volse-hubzilla-2f4c619d510e64eeda05366e485d50f490cefebe.tar.gz volse-hubzilla-2f4c619d510e64eeda05366e485d50f490cefebe.tar.bz2 volse-hubzilla-2f4c619d510e64eeda05366e485d50f490cefebe.zip |
wildcard tag issue
-rw-r--r-- | include/text.php | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/text.php b/include/text.php index daa3c4c94..44af40810 100644 --- a/include/text.php +++ b/include/text.php @@ -2789,6 +2789,9 @@ function handle_tag(&$body, &$str_tags, $profile_uid, $tag, $in_network = true) // select someone by attag or nick and the name passed in if(! $r) { + // strip user-supplied wildcards before running a wildcard search + $newname = str_replace('%','',$newname); + $r = q("SELECT * FROM abook left join xchan on abook_xchan = xchan_hash WHERE xchan_addr like ('%s') AND abook_channel = %d ", dbesc(((strpos($newname,'@')) ? $newname : $newname . '@%')), |