summaryrefslogtreecommitdiff
path: root/resources
diff options
context:
space:
mode:
authorBombadil <Bonbadil@users.noreply.github.com>2018-12-02 23:00:47 +0100
committerGreg Roach <fisharebest@gmail.com>2018-12-02 22:00:47 +0000
commit00bd9ea91b5588e66903e5332557f3eb9a47028e (patch)
tree155df01670cc8c9490777a51902c04312454f640 /resources
parent8b04670a78742b3f7e8852b5533a6c5e1d47dd73 (diff)
downloadwebtrees-00bd9ea91b5588e66903e5332557f3eb9a47028e.tar.gz
webtrees-00bd9ea91b5588e66903e5332557f3eb9a47028e.tar.bz2
webtrees-00bd9ea91b5588e66903e5332557f3eb9a47028e.zip
Fix reselecting batch update plugin. (#2047)
Diffstat (limited to 'resources')
-rw-r--r--resources/views/modules/batch_update/admin.phtml2
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 ?>