diff --git a/Controller/ConfigController.php b/Controller/ConfigController.php index a07811d..58c77f5 100644 --- a/Controller/ConfigController.php +++ b/Controller/ConfigController.php @@ -31,12 +31,14 @@ class ConfigController extends BaseController $alwaysCommentIcon = isset($values['organon_tweaks_always_comment_icon']) ? 1 : 0; $keepScroll = isset($values['organon_tweaks_keep_scroll']) ? 1 : 0; $quickClickOnly = isset($values['organon_tweaks_quick_click_only']) ? 1 : 0; + $enhanceRecurrence = isset($values['organon_tweaks_enhance_recurrence']) ? 1 : 0; $emphasizeDueDateDefault = isset($values['organon_tweaks_emphasize_duedate_default']) ? 1 : 0; if ($this->configModel->save(array( 'organon_tweaks_always_comment_icon' => $alwaysCommentIcon, 'organon_tweaks_keep_scroll' => $keepScroll, 'organon_tweaks_quick_click_only' => $quickClickOnly, + 'organon_tweaks_enhance_recurrence' => $enhanceRecurrence, 'organon_tweaks_emphasize_duedate_default' => $emphasizeDueDateDefault, ))) { $this->flash->success(t('Settings saved successfully.')); diff --git a/Plugin.php b/Plugin.php index 2bfbe29..0807b65 100644 --- a/Plugin.php +++ b/Plugin.php @@ -83,7 +83,7 @@ class Plugin extends Base public function getPluginVersion() { - return '1.4.0'; + return '1.4.1'; } public function getPluginHomepage() diff --git a/Template/config/show.php b/Template/config/show.php index 6d8f1d6..70f011f 100644 --- a/Template/config/show.php +++ b/Template/config/show.php @@ -27,7 +27,7 @@