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:
committed by
WineHQ
parent
83e83e504f
commit
72a8cd48c1
@@ -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 */
|
||||
|
||||
Reference in New Issue
Block a user