1<?php
2# ---------------------------------------------------------------------
3# rth is a requirement, test, and bugtracking system
4# Copyright (C) 2005 George Holbrook - rth@lists.sourceforge.net
5# This program is distributed under the terms and conditions of the GPL
6# See the README and LICENSE files for details
7#----------------------------------------------------------------------
8# ------------------------------------
9# Project Edit Bug Category Action
10#
11# $RCSfile: project_edit_bug_category_action.php,v $  $Revision: 1.1.1.1 $
12# ------------------------------------
13
14include"./api/include_api.php";
15auth_authenticate_user();
16
17$redirect_on_success	= 'project_manage_bug_category_page.php';
18$redirect_on_error		= 'project_edit_bug_category_page.php';
19
20$proj_properties	= session_set_properties("project_manage", $_POST);
21
22session_validate_form_set($_POST, $redirect_on_error);
23
24project_edit_bug_category(	$_POST['project_id'],
25							$_POST['bug_category_id'],
26							session_validate_form_get_field('bug_category_required') );
27
28session_validate_form_reset();
29
30
31html_print_operation_successful( "edit_bug_category_page", $redirect_on_success );
32
33# ------------------------------------
34# $Log: project_edit_bug_category_action.php,v $
35# Revision 1.1.1.1  2005/11/30 23:00:57  gth2
36# importing initial version - gth
37#
38# ------------------------------------
39?>