diff options
Diffstat (limited to 'plugins/Boardcustomizer/Template/user/settings.php')
-rw-r--r-- | plugins/Boardcustomizer/Template/user/settings.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/plugins/Boardcustomizer/Template/user/settings.php b/plugins/Boardcustomizer/Template/user/settings.php index 9a6e3124..4d2ba42f 100644 --- a/plugins/Boardcustomizer/Template/user/settings.php +++ b/plugins/Boardcustomizer/Template/user/settings.php @@ -18,12 +18,12 @@ </td>
<td>
<?php if ($this->user->userMetadataModel->exists($user['id'], $key)) : ?>
- <?= $this->url->icon('toggle-off', t('Disable'), 'SettingsController', 'disable', array('plugin' => 'boardcustomizer', 'key' => $key), true) ?>
+ <?= $this->url->icon('toggle-on', t('Toggle enabled'), 'SettingsController', 'disable', array('plugin' => 'boardcustomizer', 'key' => $key), true) ?>
<?php else : ?>
- <?= $this->url->icon('toggle-on', t('Enable'), 'SettingsController', 'enable', array('plugin' => 'boardcustomizer', 'key' => $key), true) ?>
+ <?= $this->url->icon('toggle-off', t('Toggle disabled'), 'SettingsController', 'enable', array('plugin' => 'boardcustomizer', 'key' => $key), true) ?>
<?php endif ?>
</td>
</tr>
<?php endforeach ?>
</table>
-<?php endif ?>
\ No newline at end of file +<?php endif ?>
|