X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=index.php;h=d8fb3007648f151fcfc363b544c51da9f31548de;hb=bba021defce15184c986d5e3db138bdbdd4df5d5;hp=2b1426e90ed15086563eed486c1639f135062de0;hpb=f3b8f9f0f80a05739756fb05cbec403011c46607;p=github%2Fshaarli%2FShaarli.git diff --git a/index.php b/index.php index 2b1426e9..d8fb3007 100644 --- a/index.php +++ b/index.php @@ -63,6 +63,11 @@ checkphpversion(); error_reporting(E_ALL^E_WARNING); // See all error except warnings. //error_reporting(-1); // See all errors (for debugging only) +// User configuration +if (is_file($GLOBALS['config']['CONFIG_FILE'])) { + require_once $GLOBALS['config']['CONFIG_FILE']; +} + // Shaarli library require_once 'application/LinkDB.php'; require_once 'application/Utils.php'; @@ -103,9 +108,10 @@ if (empty($GLOBALS['titleLink'])) $GLOBALS['titleLink']='?'; // I really need to rewrite Shaarli with a proper configuation manager. // Run config screen if first run: -if (!is_file($GLOBALS['config']['CONFIG_FILE'])) install(); +if (! is_file($GLOBALS['config']['CONFIG_FILE'])) { + install(); +} -require $GLOBALS['config']['CONFIG_FILE']; // Read login/password hash into $GLOBALS. $GLOBALS['title'] = !empty($GLOBALS['title']) ? escape($GLOBALS['title']) : ''; $GLOBALS['titleLink'] = !empty($GLOBALS['titleLink']) ? escape($GLOBALS['titleLink']) : ''; $GLOBALS['redirector'] = !empty($GLOBALS['redirector']) ? escape($GLOBALS['redirector']) : '';