Index: branches/RC/core/install/step_templates/db_config.tpl =================================================================== diff -u -r8929 -r10832 --- branches/RC/core/install/step_templates/db_config.tpl (.../db_config.tpl) (revision 8929) +++ branches/RC/core/install/step_templates/db_config.tpl (.../db_config.tpl) (revision 10832) @@ -7,7 +7,7 @@ $option_tpl = ''."\n"; foreach ($options as $option_key => $option_title) { - $selected = $option_key == $this->systemConfig['Database']['DBType'] ? ' selected' : ''; + $selected = $option_key == $this->toolkit->getSystemConfig('Database', 'DBType') ? ' selected' : ''; echo sprintf($option_tpl, $option_key, $selected, $option_title); } ?> @@ -18,14 +18,14 @@ Hostname*: - + Database Name*: - + @@ -37,7 +37,7 @@ $option_tpl = ''."\n"; $collations = Array ('utf8_general_ci', 'latin1_swedish_ci'); foreach ($collations as $collation) { - $selected = ($collation == $this->systemConfig['Database']['DBCollation']) ? ' selected="selected"' : ''; + $selected = ($collation == $this->toolkit->getSystemConfig('Database', 'DBCollation')) ? ' selected="selected"' : ''; echo sprintf($option_tpl, $collation, $selected); } ?> @@ -48,20 +48,27 @@ Database User Name*: - + Database User Password: - + Table Name Prefix: - + + + + + Use existing installation: + + + \ No newline at end of file