Fixed #4300 - Fix for illegal character type in action log

This commit is contained in:
snipe 2018-01-20 00:27:45 -08:00
parent 5d4bbc393e
commit 7fae380ab6

View file

@ -58,7 +58,7 @@ class ActionlogPresenter extends Presenter
public function actionType() { public function actionType() {
return strtolower(trans('general.'.str_replace(' ', '_', $this->action_type))); return mb_strtolower(trans('general.'.str_replace(' ', '_', $this->action_type)));
} }