]> git.mxchange.org Git - friendica.git/blobdiff - src/Model/Search.php
doc/themes.md,FAQ-admin: point to live friendica-themes.com mirror
[friendica.git] / src / Model / Search.php
index ca8960ef35bc6ec2437a0cc078ceffca441a89a6..09e490e77b051a5465fcf86b4c12c9830afafc84 100644 (file)
@@ -1,6 +1,6 @@
 <?php
 /**
- * @copyright Copyright (C) 2020, Friendica
+ * @copyright Copyright (C) 2010-2022, the Friendica project
  *
  * @license GNU AGPL version 3 or any later version
  *
@@ -42,7 +42,7 @@ class Search
                $tags = [];
 
                while ($term = DBA::fetch($termsStmt)) {
-                       $tags[] = trim($term['term'], '#');
+                       $tags[] = trim(mb_strtolower($term['term']), '#');
                }
                DBA::close($termsStmt);
                return $tags;