Minor changes to start_table_noborder().

svn path=/trunk/boinc/; revision=1679
This commit is contained in:
Dan Werthimer 2003-07-15 19:05:22 +00:00
parent 6b1e8eaa69
commit de9c003df9
1 changed files with 2 additions and 2 deletions

View File

@ -148,8 +148,8 @@ function start_table() {
echo "<table border=1 cellpadding=5>";
}
function start_table_noborder() {
echo "<table border=0 cellpadding=0 width=640>";
function start_table_noborder($width=640) {
echo "<table border=0 cellpadding=0 width=$width>";
}
function end_table() {