Redirect to welcome or update page

This commit is contained in:
Jonathan Labreuille
2015-11-17 20:11:03 +01:00
parent 225be9f3cd
commit fdbd1245e3
7 changed files with 111 additions and 41 deletions

View File

@@ -24,6 +24,7 @@ class Initializer {
$this->setupWidget();
$this->setupAnalytics();
$this->setupPermissions();
$this->setupChangelog();
}
function setupDB() {
@@ -104,4 +105,9 @@ class Initializer {
$permissions = new Permissions();
$permissions->init();
}
function setupChangelog() {
$changelog = new Changelog();
$changelog->init();
}
}