hasPriv("admin") || $_SESSION['current']->isSuperMaintainer($_REQUEST['appId']))) { errorpage("Insufficient Privileges!"); exit; } if(isset($_REQUEST['submit'])) { process_app_version_changes(false); redirect(apidb_fullurl("appview.php?appId={$_REQUEST['appId']}")); } else // Show the form for editing the Application Family { $family = new TableVE("edit"); $oApp = new Application($_REQUEST['appId']); if(!$oApp) { errorpage('Application does not exist'); } if($_SESSION['current']->showDebuggingInfos()) { echo "
appName: $oApp->sName
"; } apidb_header("Edit Application Family"); echo ""; echo ""; // url edit form echo '
"; echo html_back_link(1,BASE."appview.php?appId=$oApp->iAppId"); } apidb_footer(); ?>