diff options
author | thomascube <thomas@roundcube.net> | 2008-05-09 12:26:45 +0000 |
---|---|---|
committer | thomascube <thomas@roundcube.net> | 2008-05-09 12:26:45 +0000 |
commit | 2ca388d0d756b57398d129f51ae6fa087e4b045e (patch) | |
tree | 7be588535c398d42d8a4b3dd54a94c1c20a57e8f /program/include | |
parent | ad6958979248a9abfeba0acd1353c17204498431 (diff) |
Call load_host_config() and add reference to Howto_Config (#1485040)
Diffstat (limited to 'program/include')
-rw-r--r-- | program/include/rcube_config.php | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/program/include/rcube_config.php b/program/include/rcube_config.php index 277299f4a..91e37222c 100644 --- a/program/include/rcube_config.php +++ b/program/include/rcube_config.php @@ -54,6 +54,9 @@ class rcube_config // load database config include_once(INSTALL_PATH . 'config/db.inc.php'); $this->prop += (array)$rcmail_config; + + // load host-specific configuration + $this->load_host_config(); // fix paths $this->prop['skin_path'] = $this->prop['skin_path'] ? unslashify($this->prop['skin_path']) : 'skins/default'; |