diff --git a/application/Updater.php b/application/Updater.php index 0fb68c5..03d93a6 100644 --- a/application/Updater.php +++ b/application/Updater.php @@ -440,6 +440,17 @@ class Updater $this->conf->write($this->isLoggedIn); return true; } + + /** + * Reset history store file due to date format change. + */ + public function updateMethodResetHistoryFile() + { + if (is_file($this->conf->get('resource.history'))) { + unlink($this->conf->get('resource.history')); + } + return true; + } } /**