Add some missing quotes to input tags, to prevent the variables from being

assigned garbage values. Also conform the affected tags to newer HTML standards.
This commit is contained in:
Alexander Nicolaysen Sørnes
2006-12-02 05:10:11 +00:00
committed by WineHQ
parent 83e83e504f
commit 72a8cd48c1
5 changed files with 14 additions and 14 deletions

View File

@@ -39,8 +39,8 @@ if(!empty($aClean['sAction']))
echo "<form method=post action='moveAppVersion.php'>\n";
echo html_frame_start("Move ".$oApp->sName." ".$oVersion->sName, "90%","",0);
echo '<input type="hidden" name="iAppId" value='.$oVersion->iAppId.' />';
echo '<input type="hidden" name="iVersionId" value='.$oVersion->iVersionId.' />';
echo '<input type="hidden" name="iAppId" value="'.$oVersion->iAppId.'" />';
echo '<input type="hidden" name="iVersionId" value="'.$oVersion->iVersionId.'" />';
/* build a table of applications and their versions */