Index: branches/5.1.x/core/install/step_templates/fix_paths.tpl
===================================================================
--- branches/5.1.x/core/install/step_templates/fix_paths.tpl	(revision 13380)
+++ branches/5.1.x/core/install/step_templates/fix_paths.tpl	(revision 13381)
@@ -1,21 +1,21 @@
 <?php
 	$config_vars = Array ('Site_Path', 'Site_Name', 'Backup_Path');
 
 	$sql = 'SELECT Prompt, VariableName
-			FROM ' . TABLE_PREFIX . 'ConfigurationAdmin
+			FROM ' . TABLE_PREFIX . 'ConfigurationValues
 			WHERE VariableName IN ("' . implode('","', $config_vars) . '")';
 	$config_labels = $this->Conn->GetCol($sql, 'VariableName');
 
 	$odd_even = true;
 	foreach ($config_vars as $config_var) {
 		?>
 		<tr class="<?php echo $odd_even ? 'table-color1' : 'table-color2'; ?>">
 			<td class="text"><b><?php echo $this->Application->Phrase( $config_labels[$config_var] ); ?>:</b></td>
 			<td align="left">
 				<input type="text" name="config[<?php echo $config_var; ?>]" class="text" size="50" value="<?php echo $this->Application->ConfigValue($config_var); ?>" />
 			</td>
 		</tr>
 		<?php
 		$odd_even = $odd_even ? false : true;
 	}
 ?>
\ No newline at end of file