Do not append the version name to $tofetch - it isn't (currently) used.

This commit is contained in:
Colin Smith 2005-05-29 02:55:09 +00:00
parent 091ac3055b
commit b3a93cb0d1

View File

@ -128,7 +128,7 @@ foreach($categories as $index => $key) {
update_output_window($static_output);
foreach($versions[$key] as $ver) { // Begin system updates.
foreach($update_types as $type) if(in_array($type, array_keys($ver))) $url_type = $type;
$tofetch = "pfSense-" . ucfirst($url_type) . "-Update-" . $ver['version'] . "-" . $ver['name'] . ".tgz";
$tofetch = "pfSense-" . ucfirst($url_type) . "-Update-" . $ver['version'] . ".tgz";
$static_output_bak = $static_output;
$static_output .= "\n\t" . $ver['version'] . "-" . $ver['name'] . " ";
update_output_window($static_output);
@ -136,12 +136,14 @@ foreach($categories as $index => $key) {
if($url_type == "binary") {
exec("/etc/rc.firmware delta_update " . "/tmp/" . $tofetch, $bdiff_errors);
if(is_string($bdiff_errors[0])) {
unlink_if_exists("/tmp/" . $tofetch);
$static_output .= "failed!\n";
update_output_window($static_output);
break;
}
} else {
exec("/etc/rc.firmware pfSenseupgrade " . "/tmp/" . $tofetch);
unlink_if_exists("/tmp/" . $tofetch);
}
$static_output = $static_output_bak . "done.\n";
}