aboutsummaryrefslogtreecommitdiffstats
path: root/boot.php
diff options
context:
space:
mode:
Diffstat (limited to 'boot.php')
-rwxr-xr-xboot.php6
1 files changed, 6 insertions, 0 deletions
diff --git a/boot.php b/boot.php
index ad7c1936d..c52f844e1 100755
--- a/boot.php
+++ b/boot.php
@@ -605,6 +605,12 @@ function sys_boot() {
@include('.htconfig.php');
+ // allow somebody to set some initial settings just in case they can't
+ // install without special fiddling
+
+ if(App::$install && file_exists('.htpreconfig.php'))
+ @include('.htpreconfig.php');
+
if(array_key_exists('default_timezone',get_defined_vars())) {
App::$config['system']['timezone'] = $default_timezone;
}