diff options
Diffstat (limited to 'application/Updater.php')
-rw-r--r-- | application/Updater.php | 26 |
1 files changed, 11 insertions, 15 deletions
diff --git a/application/Updater.php b/application/Updater.php index 0fb68c5a..40a15906 100644 --- a/application/Updater.php +++ b/application/Updater.php | |||
@@ -329,21 +329,6 @@ class Updater | |||
329 | } | 329 | } |
330 | 330 | ||
331 | /** | 331 | /** |
332 | * While the new default theme is in an unstable state | ||
333 | * continue to use the vintage theme | ||
334 | */ | ||
335 | public function updateMethodDefaultThemeVintage() | ||
336 | { | ||
337 | if ($this->conf->get('resource.theme') !== 'default') { | ||
338 | return true; | ||
339 | } | ||
340 | $this->conf->set('resource.theme', 'vintage'); | ||
341 | $this->conf->write($this->isLoggedIn); | ||
342 | |||
343 | return true; | ||
344 | } | ||
345 | |||
346 | /** | ||
347 | * * `markdown_escape` is a new setting, set to true as default. | 332 | * * `markdown_escape` is a new setting, set to true as default. |
348 | * | 333 | * |
349 | * If the markdown plugin was already enabled, escaping is disabled to avoid | 334 | * If the markdown plugin was already enabled, escaping is disabled to avoid |
@@ -440,6 +425,17 @@ class Updater | |||
440 | $this->conf->write($this->isLoggedIn); | 425 | $this->conf->write($this->isLoggedIn); |
441 | return true; | 426 | return true; |
442 | } | 427 | } |
428 | |||
429 | /** | ||
430 | * Reset history store file due to date format change. | ||
431 | */ | ||
432 | public function updateMethodResetHistoryFile() | ||
433 | { | ||
434 | if (is_file($this->conf->get('resource.history'))) { | ||
435 | unlink($this->conf->get('resource.history')); | ||
436 | } | ||
437 | return true; | ||
438 | } | ||
443 | } | 439 | } |
444 | 440 | ||
445 | /** | 441 | /** |