Fix formatting.

This commit is contained in:
Colin Smith 2005-04-23 21:53:56 +00:00
parent af2e88f33e
commit c4e565bcf8

View File

@ -595,7 +595,7 @@ function pkg_fetch_recursive($pkgname, $filename, $dependlevel = 0, $base_url =
pkg_fetch_recursive($working_depend[1], $depend_filename, $dependlevel + 1, $base_url);
} else {
$dependlevel++;
$static_output .= str_repeat(" ", $dependlevel * 2) . $working_depend[1] . " \n";
$static_output .= "\n" . str_repeat(" ", $dependlevel * 2) . $working_depend[1] . " ";
fwrite($fd_log, $working_depend[1] . "\n");
}
}