Strip strtolower from Module\Hashtag

This commit is contained in:
Hypolite Petovan 2018-03-29 00:47:14 -04:00
parent 6dc6581aca
commit a5bb8f4e7d
1 changed files with 1 additions and 1 deletions

View File

@ -31,7 +31,7 @@ class Hashtag extends BaseModule
intval(TERM_HASHTAG) intval(TERM_HASHTAG)
); );
while ($tag = dba::fetch($taglist)) { while ($tag = dba::fetch($taglist)) {
$result[] = ['text' => strtolower($tag['term'])]; $result[] = ['text' => $tag['term']];
} }
dba::close($taglist); dba::close($taglist);