Merge pull request #3139 from Kdecherf/2502-tag-case

Ignore tag's case
This commit is contained in:
Jérémy Benoist
2017-09-03 20:25:15 +02:00
committed by GitHub
6 changed files with 111 additions and 6 deletions

View File

@ -78,7 +78,7 @@ class Tag
*/
public function setLabel($label)
{
$this->label = $label;
$this->label = mb_convert_case($label, MB_CASE_LOWER);
return $this;
}