forked from wallabag/wallabag
Tag: render tags case-insensitive by storing them in lowercase
Fixes #2502 Signed-off-by: Kevin Decherf <kevin@kdecherf.com>
This commit is contained in:
@ -45,7 +45,7 @@ class TagsAssigner
|
||||
}
|
||||
|
||||
foreach ($tags as $label) {
|
||||
$label = trim($label);
|
||||
$label = trim(mb_convert_case($label, MB_CASE_LOWER));
|
||||
|
||||
// avoid empty tag
|
||||
if (0 === strlen($label)) {
|
||||
|
||||
Reference in New Issue
Block a user