diff options
Diffstat (limited to 'cli/i18n/I18nValue.php')
| -rw-r--r-- | cli/i18n/I18nValue.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/i18n/I18nValue.php b/cli/i18n/I18nValue.php index 22317e1ae..88d0ea494 100644 --- a/cli/i18n/I18nValue.php +++ b/cli/i18n/I18nValue.php @@ -21,7 +21,7 @@ class I18nValue { } $data = explode(' -> ', $data); - $this->value = array_shift($data); + $this->value = (string)(array_shift($data) ?? ''); if (count($data) === 0) { return; } |
