[CONTROLLER][UserPanel] Fix 'could not convert IntergetType to string' error

This commit is contained in:
Hugo Sales 2021-11-15 13:37:29 +00:00
parent 1abd28c949
commit d5e6fd603d
Signed by: someonewithpc
GPG Key ID: 7D0C7EAFC9D835A0
1 changed files with 2 additions and 2 deletions

View File

@ -166,7 +166,7 @@ class UserPanel extends Controller
foreach ($columns as $name => $col) {
$type = $col->getType();
$val = $type->convertToPHPValue($col->getDefault(), $platform);
$type_str = lcfirst(mb_substr((string) $type, 1));
$type_str = $type->getName();
$label = str_replace('_', ' ', ucfirst($name));
$labels = [
@ -198,8 +198,8 @@ class UserPanel extends Controller
break;
default:
// @codeCoverageIgnoreStart
throw new ServerException(_m('Internal server error'));
Log::critical("Structure of table user_notification_prefs changed in a way not accounted to in notification settings ({$name}): " . $type_str);
throw new ServerException(_m('Internal server error'));
// @codeCoverageIgnoreEnd
}
}