diff options
| author | Bombadil <Bonbadil@users.noreply.github.com> | 2018-12-02 23:00:47 +0100 |
|---|---|---|
| committer | Greg Roach <fisharebest@gmail.com> | 2018-12-02 22:00:47 +0000 |
| commit | 00bd9ea91b5588e66903e5332557f3eb9a47028e (patch) | |
| tree | 155df01670cc8c9490777a51902c04312454f640 /resources | |
| parent | 8b04670a78742b3f7e8852b5533a6c5e1d47dd73 (diff) | |
| download | webtrees-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.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 ?> |
