Skip to content

Commit

Permalink
removed check for mbstring function
Browse files Browse the repository at this point in the history
  • Loading branch information
ccasciotti committed Mar 24, 2017
1 parent 718edfe commit ea1dd49
Showing 1 changed file with 1 addition and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -230,10 +230,6 @@ public function getCategoryById($categoryId)
*/
protected function standardizeString($string)
{
if (function_exists('mb_strtolower')) {
return mb_strtolower($string);
}

return strtolower($string);
return mb_strtolower($string);
}
}

0 comments on commit ea1dd49

Please sign in to comment.