From: Hypolite Petovan Date: Thu, 29 Mar 2018 04:47:14 +0000 (-0400) Subject: Strip strtolower from Module\Hashtag X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=a5bb8f4e7d6b0d7529d2026b9e97b18dfdd12d7c;p=friendica.git Strip strtolower from Module\Hashtag --- diff --git a/src/Module/Hashtag.php b/src/Module/Hashtag.php index 82cfa1f847..c35a6440c0 100644 --- a/src/Module/Hashtag.php +++ b/src/Module/Hashtag.php @@ -31,7 +31,7 @@ class Hashtag extends BaseModule intval(TERM_HASHTAG) ); while ($tag = dba::fetch($taglist)) { - $result[] = ['text' => strtolower($tag['term'])]; + $result[] = ['text' => $tag['term']]; } dba::close($taglist);