tbrehm
2008-08-18 01074a6eafd6e3a570c2ae2e1518bc7f0b162661
Added missing variables in installer.
1 files modified
10 ■■■■ changed files
install/lib/installer_base.lib.php 10 ●●●● patch | view | raw | blame | history
install/lib/installer_base.lib.php
@@ -115,6 +115,7 @@
    public function configure_database()
    {
        global $conf;
        $cf = $conf['mysql']; // make $conf['mysql'] more accessible
        //** Create the database
        if(!$this->db->query('CREATE DATABASE IF NOT EXISTS '.$cf['database'])) {
@@ -147,6 +148,7 @@
    public function add_database_server_record() {
        
        global $conf;
        $cf = $conf['mysql']; // make $conf['mysql'] more accessible
        
        if($cf['host'] == 'localhost') {
@@ -181,7 +183,9 @@
    //** writes postfix configuration files
    private function process_postfix_config($configfile)
    {
    {
        global $conf;
        $config_dir = $conf['postfix']['config_dir'].'/';
        $full_file_name = $config_dir.$configfile; 
        //* Backup exiting file
@@ -199,7 +203,9 @@
    public function configure_jailkit()
    {
        $cf = $conf['jailkit'];
        global $conf;
        $cf = $conf['jailkit'];
        $config_dir = $cf['config_dir'];
        $jk_init = $cf['jk_init'];
        $jk_chrootsh = $cf['jk_chrootsh'];