diff options
| author | Jan-Hendrik Willms <tleilax+studip@gmail.com> | 2024-02-16 13:41:26 +0000 |
|---|---|---|
| committer | Jan-Hendrik Willms <tleilax+studip@gmail.com> | 2024-02-16 13:41:26 +0000 |
| commit | d40e6154a8080b92c6c69680425414e16fe4f742 (patch) | |
| tree | e4492424c370aa9633e7f05bb36c5682ce8e0e1e /app/controllers/admin/plugin.php | |
| parent | 94960f72347aa217107e5a43cfe8cdd3584a48c0 (diff) | |
fixes #3727
Closes #3727
Merge request studip/studip!2613
Diffstat (limited to 'app/controllers/admin/plugin.php')
| -rw-r--r-- | app/controllers/admin/plugin.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app/controllers/admin/plugin.php b/app/controllers/admin/plugin.php index ef63517..903c45e 100644 --- a/app/controllers/admin/plugin.php +++ b/app/controllers/admin/plugin.php @@ -591,10 +591,10 @@ class Admin_PluginController extends AuthenticatedController 'manifest_info_en' => [ 'label' => sprintf(_('Standardbeschreibung des Plugins (%s)'), _('Englisch')), 'type' => 'info', - 'value' => $this->metadata['descriptionlong_en'] ?? $this->metadata['description_en'], + 'value' => $this->metadata['descriptionlong_en'] ?? $this->metadata['description_en'] ?? null, 'if' => "STUDIPFORM_SELECTEDLANGUAGES.description === 'en_GB'" ], - 'decription_mode' => [ + 'description_mode' => [ 'label' => _('Modus der neuen Beschreibung'), 'type' => 'select', 'options' => [ |
