tbrehm
2013-09-04 50453768a5c3a0b57a58ccebfd1368fda0fd3b42
Fixed variable conversion issue in installer.
4 files modified
14 ■■■■ changed files
install/dist/lib/fedora.lib.php 4 ●●●● patch | view | raw | blame | history
install/dist/lib/gentoo.lib.php 2 ●●● patch | view | raw | blame | history
install/dist/lib/opensuse.lib.php 4 ●●●● patch | view | raw | blame | history
install/lib/installer_base.lib.php 4 ●●●● patch | view | raw | blame | history
install/dist/lib/fedora.lib.php
@@ -845,7 +845,7 @@
        $content = str_replace('{language}', $conf['language'], $content);
        $content = str_replace('{timezone}', $conf['timezone'], $content);
        $content = str_replace('{theme}', $conf['theme'], $content);
        $content = str_replace('{language_file_import_enabled}', $conf['language_file_import_enabled'], $content);
        $content = str_replace('{language_file_import_enabled}', ($conf['language_file_import_enabled'] == true)?'true':'false', $content);
        
        wf("$install_dir/interface/lib/$configfile", $content);
        
@@ -870,7 +870,7 @@
        $content = str_replace('{language}', $conf['language'], $content);
        $content = str_replace('{timezone}', $conf['timezone'], $content);
        $content = str_replace('{theme}', $conf['theme'], $content);
        $content = str_replace('{language_file_import_enabled}', $conf['language_file_import_enabled'], $content);
        $content = str_replace('{language_file_import_enabled}', ($conf['language_file_import_enabled'] == true)?'true':'false', $content);
        wf("$install_dir/server/lib/$configfile", $content);
        
install/dist/lib/gentoo.lib.php
@@ -725,7 +725,7 @@
        $content = str_replace('{language}', $conf['language'], $content);
        $content = str_replace('{timezone}', $conf['timezone'], $content);
        $content = str_replace('{theme}', $conf['theme'], $content);
        $content = str_replace('{language_file_import_enabled}', $conf['language_file_import_enabled'], $content);
        $content = str_replace('{language_file_import_enabled}', ($conf['language_file_import_enabled'] == true)?'true':'false', $content);
        
        $this->write_config_file("$install_dir/interface/lib/$configfile", $content);
        
install/dist/lib/opensuse.lib.php
@@ -900,7 +900,7 @@
        $content = str_replace('{language}', $conf['language'], $content);
        $content = str_replace('{timezone}', $conf['timezone'], $content);
        $content = str_replace('{theme}', $conf['theme'], $content);
        $content = str_replace('{language_file_import_enabled}', $conf['language_file_import_enabled'], $content);
        $content = str_replace('{language_file_import_enabled}', ($conf['language_file_import_enabled'] == true)?'true':'false', $content);
        
        wf("$install_dir/interface/lib/$configfile", $content);
        
@@ -925,7 +925,7 @@
        $content = str_replace('{language}', $conf['language'], $content);
        $content = str_replace('{timezone}', $conf['timezone'], $content);
        $content = str_replace('{theme}', $conf['theme'], $content);
        $content = str_replace('{language_file_import_enabled}', $conf['language_file_import_enabled'], $content);
        $content = str_replace('{language_file_import_enabled}', ($conf['language_file_import_enabled'] == true)?'true':'false', $content);
        
        wf("$install_dir/server/lib/$configfile", $content);
        
install/lib/installer_base.lib.php
@@ -1693,7 +1693,7 @@
        $content = str_replace('{language}', $conf['language'], $content);
        $content = str_replace('{timezone}', $conf['timezone'], $content);
        $content = str_replace('{theme}', $conf['theme'], $content);
        $content = str_replace('{language_file_import_enabled}', $conf['language_file_import_enabled'], $content);
        $content = str_replace('{language_file_import_enabled}', ($conf['language_file_import_enabled'] == true)?'true':'false', $content);
        wf($install_dir.'/interface/lib/'.$configfile, $content);
@@ -1718,7 +1718,7 @@
        $content = str_replace('{language}', $conf['language'], $content);
        $content = str_replace('{timezone}', $conf['timezone'], $content);
        $content = str_replace('{theme}', $conf['theme'], $content);
        $content = str_replace('{language_file_import_enabled}', $conf['language_file_import_enabled'], $content);
        $content = str_replace('{language_file_import_enabled}', ($conf['language_file_import_enabled'] == true)?'true':'false', $content);
        wf($install_dir.'/server/lib/'.$configfile, $content);