Skip to content
Snippets Groups Projects
Commit 5365d284 authored by Jan-Hendrik Willms's avatar Jan-Hendrik Willms
Browse files

prevent warning in plugin administration, fixes #4640

Closes #4640

Merge request studip/studip!3455
parent 5fe538e2
No related branches found
No related tags found
No related merge requests found
...@@ -585,7 +585,7 @@ class Admin_PluginController extends AuthenticatedController ...@@ -585,7 +585,7 @@ class Admin_PluginController extends AuthenticatedController
'manifest_info_de' => [ 'manifest_info_de' => [
'label' => _('Standardbeschreibung des Plugins'), 'label' => _('Standardbeschreibung des Plugins'),
'type' => 'info', 'type' => 'info',
'value' => $this->metadata['descriptionlong'] ?? $this->metadata['description'], 'value' => $this->metadata['descriptionlong'] ?? $this->metadata['description'] ?? '',
'if' => "STUDIPFORM_SELECTEDLANGUAGES.description === 'de_DE'" 'if' => "STUDIPFORM_SELECTEDLANGUAGES.description === 'de_DE'"
], ],
'manifest_info_en' => [ 'manifest_info_en' => [
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment