aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Wallabag/CoreBundle/Entity
diff options
context:
space:
mode:
authorJérémy Benoist <j0k3r@users.noreply.github.com>2017-09-03 20:25:15 +0200
committerGitHub <noreply@github.com>2017-09-03 20:25:15 +0200
commit3af5d41759c13420faa6f426491f1e95e5754908 (patch)
tree7ae4ccdc515838cbb5a879e4308a3a742a4de1cf /src/Wallabag/CoreBundle/Entity
parent9c4d1eb56a6bdd3cdeb5bed3d58be18395a5134b (diff)
parent7b4f66881d694c948aca9372da6362b8873de6bb (diff)
downloadwallabag-3af5d41759c13420faa6f426491f1e95e5754908.tar.gz
wallabag-3af5d41759c13420faa6f426491f1e95e5754908.tar.zst
wallabag-3af5d41759c13420faa6f426491f1e95e5754908.zip
Merge pull request #3139 from Kdecherf/2502-tag-case
Ignore tag's case
Diffstat (limited to 'src/Wallabag/CoreBundle/Entity')
-rw-r--r--src/Wallabag/CoreBundle/Entity/Tag.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Wallabag/CoreBundle/Entity/Tag.php b/src/Wallabag/CoreBundle/Entity/Tag.php
index c19023af..a6dc8c50 100644
--- a/src/Wallabag/CoreBundle/Entity/Tag.php
+++ b/src/Wallabag/CoreBundle/Entity/Tag.php
@@ -78,7 +78,7 @@ class Tag
78 */ 78 */
79 public function setLabel($label) 79 public function setLabel($label)
80 { 80 {
81 $this->label = $label; 81 $this->label = mb_convert_case($label, MB_CASE_LOWER);
82 82
83 return $this; 83 return $this;
84 } 84 }