diff --git a/usr/local/www/installer/installer.php b/usr/local/www/installer/installer.php index 85360be2a9..7c5761b089 100644 --- a/usr/local/www/installer/installer.php +++ b/usr/local/www/installer/installer.php @@ -495,7 +495,7 @@ function verify_before_install() { } if(!$bootmanager) $bootmanager = $_REQUEST['bootmanager']; - echo "\n\n"; + // echo "\n\n"; $disk = pcsysinstall_get_disk_info(htmlspecialchars($_REQUEST['disk'])); $disksize = format_bytes($disk['size'] * 1048576); // Loop through posted items and create an array @@ -533,7 +533,7 @@ function verify_before_install() { $tmparray['encpass'] = $_REQUEST['encpass' . $x]; $disks[] = $tmparray; } - echo "\n \n"; + // echo "\n \n"; $bootmanagerupper = strtoupper($bootmanager); echo << @@ -593,11 +593,11 @@ EOFAMBACBAF; foreach($disks as $disk) { $desc = pcsysinstall_get_disk_info($disk['disk']); echo ""; - echo "   {$disk['mountpoint']}"; - echo "{$disk['fstype']}"; - echo "{$disk['disk']} {$desc['desc']}"; - echo "{$disk['size']}"; - echo "{$disk['encpass']}"; + echo "   " . htmlspecialchars($disk['mountpoint']) . ""; + echo "" . htmlspecialchars($disk['fstype']) . ""; + echo "" . htmlspecialchars($disk['disk']) . " " . htmlspecialchars($desc['desc']) . ""; + echo "" . htmlspecialchars($disk['size']) . ""; + echo "" . htmlspecialchars($disk['encpass']) . ""; echo ""; } @@ -968,7 +968,7 @@ EOF; $first_disk_size = $size - $swap_size; // Debugging - echo "\n\n\n\n"; + // echo "\n\n\n\n"; // Check to see if a on disk layout exists if(file_exists("/tmp/webInstaller_disk_layout.txt")) {