diff --git a/CHANGELOG.txt b/CHANGELOG.txt index 257ab35..2f9b490 100644 --- a/CHANGELOG.txt +++ b/CHANGELOG.txt @@ -57,3 +57,4 @@ xxx 2013-03-07 samwilson Moved to Github for easier collaboration. 2.02 Bugfixes 2.03 Bugfixes 2.22 2024-6-21 cas Bugfixes (mainly in relation to newer php version) +2.23 2024-10-23 cas Fixed loss of data within config when reauthentication is required diff --git a/Reminder.php b/Reminder.php index 9c045e9..685b494 100644 --- a/Reminder.php +++ b/Reminder.php @@ -4,7 +4,7 @@ class ReminderPlugin extends MantisPlugin { function register() { $this->name = 'Reminder'; $this->description = lang_get( 'reminder_plugin_desc' ); - $this->version = '2.22'; + $this->version = '2.24'; $this->requires = array('MantisCore' => '2.0.0',); $this->author = 'Cas Nuy'; $this->contact = 'Cas-at-nuy.info'; diff --git a/pages/config.php b/pages/config.php index 4b10c33..f5992e4 100644 --- a/pages/config.php +++ b/pages/config.php @@ -63,6 +63,7 @@ function reminder_print_status_option_list( $p_name ) {

+

diff --git a/pages/config_edit.php b/pages/config_edit.php index 1e9cc55..7bb7cfa 100644 --- a/pages/config_edit.php +++ b/pages/config_edit.php @@ -1,4 +1,5 @@