diff options
| -rw-r--r-- | resources/views/modules/batch_update/admin.phtml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/resources/views/modules/batch_update/admin.phtml b/resources/views/modules/batch_update/admin.phtml index 7eb79aab69..9200be83f9 100644 --- a/resources/views/modules/batch_update/admin.phtml +++ b/resources/views/modules/batch_update/admin.phtml @@ -27,7 +27,7 @@ <?php endif ?> <?php foreach ($plugins as $key => $value) : ?> - <option value="<?= $key ?>" <?= ($plugin ? '\\' . get_class($plugin) : null) === $key ? 'selected' : '' ?>> + <option value="<?= $key ?>" <?= ($plugin ? get_class($plugin) : null) === $key ? 'selected' : '' ?>> <?= $value->getName() ?> </option> <?php endforeach ?> |
