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