diff options
| author | Jan-Hendrik Willms <tleilax+studip@gmail.com> | 2024-09-28 05:47:12 +0000 |
|---|---|---|
| committer | Jan-Hendrik Willms <tleilax+studip@gmail.com> | 2024-09-28 05:47:12 +0000 |
| commit | 5365d28467c57caba2f348437cbf98145c20d5e3 (patch) | |
| tree | 5278afc94df180bc3fe8702b5879aaf6e9d12bca /app/controllers/admin | |
| parent | 5fe538e2b58180fb23040831fe9f62ae1e6cd45f (diff) | |
prevent warning in plugin administration, fixes #4640
Closes #4640
Merge request studip/studip!3455
Diffstat (limited to 'app/controllers/admin')
| -rw-r--r-- | app/controllers/admin/plugin.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/controllers/admin/plugin.php b/app/controllers/admin/plugin.php index 0a01083..37b08cc 100644 --- a/app/controllers/admin/plugin.php +++ b/app/controllers/admin/plugin.php @@ -585,7 +585,7 @@ class Admin_PluginController extends AuthenticatedController 'manifest_info_de' => [ 'label' => _('Standardbeschreibung des Plugins'), 'type' => 'info', - 'value' => $this->metadata['descriptionlong'] ?? $this->metadata['description'], + 'value' => $this->metadata['descriptionlong'] ?? $this->metadata['description'] ?? '', 'if' => "STUDIPFORM_SELECTEDLANGUAGES.description === 'de_DE'" ], 'manifest_info_en' => [ |
