hasPriv("admin") || $_SESSION['current']->isSuperMaintainer($aClean['iAppId']))) util_show_error_page_and_exit("Insufficient Privileges!"); if(!empty($aClean['sSubmit'])) { process_app_version_changes(false); util_redirect_and_exit(apidb_fullurl("appview.php?iAppId={$aClean['iAppId']}")); } else // Show the form for editing the Application Family { $family = new TableVE("edit"); $oApp = new Application($aClean['iAppId']); if(!$oApp) { util_show_error_page_and_exit('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?iAppId=$oApp->iAppId"); } apidb_footer(); ?>