True, "nonavbar" => True); } $phpgw_info["flags"]["disable_message_class"] = True; $phpgw_info["flags"]["disable_send_class"] = True; $phpgw_info["flags"]["currentapp"] = "admin"; include("../header.inc.php"); $phpgw->template->set_file(array("form" => "application_form.tpl")); if ($submit) { $phpgw->templateotalerrors = 0; if (! $n_app_name) $error[$phpgw->templateotalerrors++] = lang("You must enter an application name."); if (! $n_app_title) $error[$phpgw->templateotalerrors++] = lang("You must enter an application title."); if ($old_app_name != $n_app_name) { $phpgw->db->query("select count(*) from applications where app_name='" . addslashes($n_app_name) . "'"); $phpgw->db->next_record(); if ($phpgw->db->f(0) != 0) { $error[$phpgw->templateotalerrors++] = lang("That application name already exsists."); } } if (! $phpgw->templateotalerrors) { $phpgw->db->query("update applications set app_name='" . addslashes($n_app_name) . "'," . "app_title='" . addslashes($n_app_title) . "', app_enabled='" . "$n_app_enabled' where app_name='$old_app_name'"); Header("Location: " . $phpgw->link("applications.php")); exit; } } $phpgw->db->query("select * from applications where app_name='$app_name'"); $phpgw->db->next_record(); if ($phpgw->templateotalerrors) { $phpgw->common->phpgw_header(); $phpgw->common->navbar(); $phpgw->template->set_var("error","