diff options
Diffstat (limited to 'index.php')
-rw-r--r-- | index.php | 7 |
1 files changed, 4 insertions, 3 deletions
@@ -1,4 +1,5 @@ | |||
1 | <?php | 1 | <?php |
2 | |||
2 | /** | 3 | /** |
3 | * Shaarli - The personal, minimalist, super-fast, database free, bookmarking service. | 4 | * Shaarli - The personal, minimalist, super-fast, database free, bookmarking service. |
4 | * | 5 | * |
@@ -77,9 +78,9 @@ if (isset($_SERVER['HTTP_ACCEPT_LANGUAGE'])) { | |||
77 | new Languages(setlocale(LC_MESSAGES, 0), $conf); | 78 | new Languages(setlocale(LC_MESSAGES, 0), $conf); |
78 | 79 | ||
79 | $conf->setEmpty('general.timezone', date_default_timezone_get()); | 80 | $conf->setEmpty('general.timezone', date_default_timezone_get()); |
80 | $conf->setEmpty('general.title', t('Shared bookmarks on '). escape(index_url($_SERVER))); | 81 | $conf->setEmpty('general.title', t('Shared bookmarks on ') . escape(index_url($_SERVER))); |
81 | 82 | ||
82 | RainTPL::$tpl_dir = $conf->get('resource.raintpl_tpl').'/'.$conf->get('resource.theme').'/'; // template directory | 83 | RainTPL::$tpl_dir = $conf->get('resource.raintpl_tpl') . '/' . $conf->get('resource.theme') . '/'; // template directory |
83 | RainTPL::$cache_dir = $conf->get('resource.raintpl_tmp'); // cache directory | 84 | RainTPL::$cache_dir = $conf->get('resource.raintpl_tmp'); // cache directory |
84 | 85 | ||
85 | date_default_timezone_set($conf->get('general.timezone', 'UTC')); | 86 | date_default_timezone_set($conf->get('general.timezone', 'UTC')); |
@@ -177,6 +178,6 @@ try { | |||
177 | } catch (Throwable $e) { | 178 | } catch (Throwable $e) { |
178 | die(nl2br( | 179 | die(nl2br( |
179 | 'An unexpected error happened, and the error template could not be displayed.' . PHP_EOL . PHP_EOL . | 180 | 'An unexpected error happened, and the error template could not be displayed.' . PHP_EOL . PHP_EOL . |
180 | exception2text($e) | 181 | exception2text($e) |
181 | )); | 182 | )); |
182 | } | 183 | } |