Allow people to submit new version from App Parent - Tony Lambregts
This commit is contained in:
@@ -64,6 +64,7 @@ if ($_REQUEST['queueName'])
|
|||||||
if( !empty($errors) )
|
if( !empty($errors) )
|
||||||
{
|
{
|
||||||
errorpage("We found the following errors:","<ul>$errors</ul><br>Please go back and correct them.");
|
errorpage("We found the following errors:","<ul>$errors</ul><br>Please go back and correct them.");
|
||||||
|
echo html_back_link(1);
|
||||||
exit;
|
exit;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -190,17 +191,17 @@ else if ($_REQUEST['apptype'])
|
|||||||
//app parent
|
//app parent
|
||||||
$x = new TableVE("view");
|
$x = new TableVE("view");
|
||||||
echo '<tr valign=top><td class=color0><b>App Parent</b></td><td>',"\n";
|
echo '<tr valign=top><td class=color0><b>App Parent</b></td><td>',"\n";
|
||||||
$x->make_option_list("queueName","","appFamily","appId","appName");
|
$x->make_option_list("queueName",stripslashes($appId),"appFamily","appId","appName");
|
||||||
echo '</td></tr>',"\n";
|
echo '</td></tr>',"\n";
|
||||||
|
|
||||||
echo '<tr valign=top><td class=color0><b>App Version</b></td>',"\n";
|
echo '<tr valign=top><td class=color0><b>App Version</b></td>',"\n";
|
||||||
echo '<td><input type=text name="queueVersion" value="" size=20></td></tr>',"\n";
|
echo '<td><input type=text name="queueVersion" size=20 value="'.$queueVersion.'"></td></tr>',"\n";
|
||||||
|
|
||||||
echo '<tr valign=top><td class=color0><b>App URL</b></td>',"\n";
|
echo '<tr valign=top><td class=color0><b>App URL</b></td>',"\n";
|
||||||
echo '<td><input type=text name="queueURL" value="" size=20></td></tr>',"\n";
|
echo '<td><input type=text name="queueURL" size=20 value="'.$queueURL.'"></td></tr>',"\n";
|
||||||
|
|
||||||
echo '<tr valign=top><td class=color0><b>App Desc</b></td>',"\n";
|
echo '<tr valign=top><td class=color0><b>App Desc</b></td>',"\n";
|
||||||
echo '<td><textarea name="queueDesc" rows=10 cols=35></textarea></td></tr>',"\n";
|
echo '<td><textarea name="queueDesc" rows=10 cols=35 value="'.$queueDesc.'"></textarea></td></tr>',"\n";
|
||||||
|
|
||||||
echo '<tr valign=top><td class=color0><b>Email</b></td>',"\n";
|
echo '<tr valign=top><td class=color0><b>Email</b></td>',"\n";
|
||||||
echo '<td><input type=text name="queueEmail" value="'.$email.'" size=20></td></tr>',"\n";
|
echo '<td><input type=text name="queueEmail" value="'.$email.'" size=20></td></tr>',"\n";
|
||||||
|
|||||||
@@ -326,6 +326,10 @@ if($appId && !$versionId)
|
|||||||
echo "</td></tr>\n";
|
echo "</td></tr>\n";
|
||||||
}
|
}
|
||||||
|
|
||||||
|
echo "<tr><td colspan = 2><center>";
|
||||||
|
echo "<a href='appsubmit.php?appId=$data->appId&apptype=2'> Submit New Version </a> \n";
|
||||||
|
echo "</center></td></tr>";
|
||||||
|
|
||||||
echo "</table></td><td class=color2 valign=top width='100%'>\n";
|
echo "</table></td><td class=color2 valign=top width='100%'>\n";
|
||||||
|
|
||||||
//Desc
|
//Desc
|
||||||
|
|||||||
Reference in New Issue
Block a user