hasPriv("admin") || $_SESSION['current']->isSuperMaintainer($aClean['iAppId']))) util_show_error_page_and_exit("Insufficient Privileges!"); if(!empty($aClean['sSubmit'])) { process_app_version_changes(false); url::processForm($aClean); $oApp = new application($aClean['iAppId']); util_redirect_and_exit($oApp->objectMakeUrl()); } 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 "
\n"; $oApp->outputEditor(""); echo '', "\n"; echo '',"\n"; echo '
', "\n"; echo "
"; echo "

"; // URL editor echo url::outputEditor("editAppFamily.php", NULL, $oApp); echo html_back_link(1,$oApp->objectMakeUrl()); } apidb_footer(); ?>