Index: branches/5.3.x/core/install/step_templates/db_reconfig.tpl =================================================================== diff -u -N -r15931 -r15962 --- branches/5.3.x/core/install/step_templates/db_reconfig.tpl (.../db_reconfig.tpl) (revision 15931) +++ branches/5.3.x/core/install/step_templates/db_reconfig.tpl (.../db_reconfig.tpl) (revision 15962) @@ -7,7 +7,7 @@ $option_tpl = ''."\n"; foreach ($options as $option_key => $option_title) { - $selected = $option_key == $this->toolkit->getSystemConfig('Database', 'DBType') ? ' selected' : ''; + $selected = $option_key == $this->toolkit->systemConfig->get('DBType', 'Database') ? ' selected' : ''; echo sprintf($option_tpl, $option_key, $selected, $option_title); } ?> @@ -18,28 +18,28 @@ Database Hostname *: - + Database Name *: - + Database User Name *: - + Database User Password: - + @@ -51,7 +51,7 @@ $option_tpl = ''."\n"; $collations = Array ('utf8_general_ci', 'latin1_swedish_ci'); foreach ($collations as $collation) { - $selected = ($collation == $this->toolkit->getSystemConfig('Database', 'DBCollation')) ? ' selected="selected"' : ''; + $selected = ($collation == $this->toolkit->systemConfig->get('DBCollation', 'Database')) ? ' selected="selected"' : ''; echo sprintf($option_tpl, $collation, $selected); } ?> @@ -62,6 +62,6 @@ Prefix for Table Names: - + \ No newline at end of file