Merge pull request #13333 from snipe/fixes/strtolower_on_catgories
Added strtolower for category type
This commit is contained in:
commit
dc20305db6
1 changed files with 2 additions and 2 deletions
|
@ -553,8 +553,8 @@ class Helper
|
|||
'license' => trans('general.license'),
|
||||
];
|
||||
|
||||
if($selection != null){
|
||||
return $category_types[$selection];
|
||||
if ($selection != null){
|
||||
return $category_types[strtolower($selection)];
|
||||
}
|
||||
else
|
||||
return $category_types;
|
||||
|
|
Loading…
Add table
Reference in a new issue