diff options
| author | Jan-Hendrik Willms <tleilax+github@gmail.com> | 2024-07-01 10:24:31 +0200 |
|---|---|---|
| committer | Jan-Hendrik Willms <tleilax+github@gmail.com> | 2024-07-04 15:50:59 +0200 |
| commit | deab35971dd3cec8c96d097275fd84eda37e5b8d (patch) | |
| tree | 514bafd3a4ffbe16eb1f6a41c7d2787330f0afe0 /app/controllers/admin | |
| parent | a9c40e363b3e13223bb771105c190be9475021a5 (diff) | |
refactor forms to sfc, fixes #4300tic-4300
Diffstat (limited to 'app/controllers/admin')
| -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 0a01083..9d7d589 100644 --- a/app/controllers/admin/plugin.php +++ b/app/controllers/admin/plugin.php @@ -586,13 +586,13 @@ class Admin_PluginController extends AuthenticatedController 'label' => _('Standardbeschreibung des Plugins'), 'type' => 'info', 'value' => $this->metadata['descriptionlong'] ?? $this->metadata['description'], - 'if' => "STUDIPFORM_SELECTEDLANGUAGES.description === 'de_DE'" + 'if' => "i18n.description === 'de_DE'" ], 'manifest_info_en' => [ 'label' => sprintf(_('Standardbeschreibung des Plugins (%s)'), _('Englisch')), 'type' => 'info', 'value' => $this->metadata['descriptionlong_en'] ?? $this->metadata['description_en'] ?? null, - 'if' => "STUDIPFORM_SELECTEDLANGUAGES.description === 'en_GB'" + 'if' => "i18n.description === 'en_GB'" ], 'description_mode' => [ 'label' => _('Modus der neuen Beschreibung'), |
