Call load_host_config() and add reference to Howto_Config (#1485040)
| | |
| | | $rcmail_config['dont_override'] = array(); |
| | | |
| | | // try to load host-specific configuration |
| | | // see http://trac.roundcube.net/wiki/Howto_Config for more details |
| | | $rcmail_config['include_host_config'] = false; |
| | | |
| | | // don't let users set pagesize to more than this value if set |
| | |
| | | // 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'; |