tidy appdb html to make it validate - try 4

This commit is contained in:
Jeff Zaroyko
2008-02-23 12:06:24 +11:00
committed by Chris Morgan
parent ccbc842d5c
commit 16949bb71c
50 changed files with 414 additions and 411 deletions

View File

@@ -104,8 +104,8 @@ class downloadurl
$sReturn .= html_tr(array(
" ",
"<input type=\"text\" size=\"45\" name=\"".
"sDescriptionNew\" />",
"<input type=\"text\" size=\"45\" name=\"sUrlNew\" />"),
"sDescriptionNew\">",
"<input type=\"text\" size=\"45\" name=\"sUrlNew\">"),
"color4");
if($hResult)
@@ -114,22 +114,22 @@ class downloadurl
{
$sReturn .= html_tr(array(
"<input type=\"checkbox\" name=\"bRemove$oRow->id\" ".
"value=\"true\" />",
"value=\"true\">",
"<input type=\"text\" size=\"45\" name=\"".
"sDescription$oRow->id\" value=\"$oRow->description\" />",
"sDescription$oRow->id\" value=\"$oRow->description\">",
"<input type=\"text\" size=\"45\" name=\"sUrl$oRow->id\" ".
"value=\"$oRow->url\" />"),
"value=\"$oRow->url\">"),
($i % 2) ? "color0" : "color4");
}
}
$sReturn .= html_table_end();
$sReturn .= "<div align=\"center\"><input type=\"submit\" value=\"".
"Update Download URLs\" name=\"sSubmit\" /></div>\n";
"Update Download URLs\" name=\"sSubmit\"></div>\n";
$sReturn .= "<input type=\"hidden\" name=\"iVersionId\" ".
"value=\"$oVersion->iVersionId\" />\n";
"value=\"$oVersion->iVersionId\">\n";
$sReturn .= "<input type=\"hidden\" name=\"iAppId\" ".
"value=\"$oVersion->iAppId\" />\n";
"value=\"$oVersion->iAppId\">\n";
$sReturn .= "</form>\n";
$sReturn .= html_frame_end("&nbsp;");
@@ -298,19 +298,19 @@ class downloadurl
$sReturn .= html_table_begin("width='100%' border=0 cellpadding=2 cellspacing=0");
$sReturn .= "A place where this version can be downloaded for free".
" (if applicable). You can add more links later.<br />";
" (if applicable). You can add more links later.<br>";
$sReturn .= html_tr(array(
array("<b>Download URL:</b>", "align=right"),
array("<input type=\"text\" name=\"sDownloadUrlUrl\" ".
"value=\"$sDownloadUrlUrl\" size=\"60\" />",
"value=\"$sDownloadUrlUrl\" size=\"60\">",
"class=\"color4\"")),
"color0");
$sReturn .= html_tr(array(
array("<b>Download URL Description:</b>", "align=right"),
array("<input type=\"text\" name=\"sDownloadUrlDescription\" ".
"value=\"$sDownloadUrlDescription\" size=\"60\" />",
"value=\"$sDownloadUrlDescription\" size=\"60\">",
"class=\"color4\"")),
"color0");