diff options
| author | Andrew Dolgov <noreply@fakecake.org> | 2021-02-23 08:34:37 +0300 |
|---|---|---|
| committer | Andrew Dolgov <noreply@fakecake.org> | 2021-02-23 08:34:37 +0300 |
| commit | 5229cc58b269bd04b2be7768107697063d95736e (patch) | |
| tree | 6520dfaf81ec8eb818c4b66f3f348024466c6e00 /index.php | |
| parent | 4ed91619ddefcaa2bf758361aaccf0844465228b (diff) | |
| parent | cae54dad564bc1372f0f6cc11101b6377caef9a9 (diff) | |
Merge branch 'wip-config-object'
Diffstat (limited to 'index.php')
| -rw-r--r-- | index.php | 11 |
1 files changed, 2 insertions, 9 deletions
@@ -1,9 +1,4 @@ <?php - if (!file_exists("config.php")) { - print "<b>Fatal Error</b>: You forgot to copy - <b>config.php-dist</b> to <b>config.php</b> and edit it.\n"; - exit; - } // we need a separate check here because functions.php might get parsed // incorrectly before 5.3 because of :: syntax. @@ -19,8 +14,6 @@ require_once "sessions.php"; require_once "functions.php"; require_once "sanity_check.php"; - require_once "config.php"; - require_once "db-prefs.php"; if (!init_plugins()) return; @@ -42,8 +35,8 @@ } } ?> - <?php if (theme_exists(LOCAL_OVERRIDE_STYLESHEET)) { - echo stylesheet_tag(get_theme_path(LOCAL_OVERRIDE_STYLESHEET)); + <?php if (theme_exists(Config::get(Config::LOCAL_OVERRIDE_STYLESHEET))) { + echo stylesheet_tag(get_theme_path(Config::get(Config::LOCAL_OVERRIDE_STYLESHEET))); } ?> <script type="text/javascript"> |