1<?php
2# MantisBT - A PHP based bugtracking system
3
4# MantisBT is free software: you can redistribute it and/or modify
5# it under the terms of the GNU General Public License as published by
6# the Free Software Foundation, either version 2 of the License, or
7# (at your option) any later version.
8#
9# MantisBT is distributed in the hope that it will be useful,
10# but WITHOUT ANY WARRANTY; without even the implied warranty of
11# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12# GNU General Public License for more details.
13#
14# You should have received a copy of the GNU General Public License
15# along with MantisBT.  If not, see <http://www.gnu.org/licenses/>.
16
17/**
18 * @package MantisBT
19 * @copyright Copyright 2000 - 2002  Kenzaburo Ito - kenito@300baud.org
20 * @copyright Copyright 2002  MantisBT Team - mantisbt-dev@lists.sourceforge.net
21 * @author Marcello Scata' <marcelloscata at users.sourceforge.net> ITALY
22 * @link http://www.mantisbt.org
23 *
24 * @uses core.php
25 * @uses access_api.php
26 * @uses form_api.php
27 * @uses gpc_api.php
28 * @uses helper_api.php
29 * @uses lang_api.php
30 * @uses print_api.php
31 */
32
33require_once( 'core.php' );
34require_api( 'access_api.php' );
35require_api( 'form_api.php' );
36require_api( 'gpc_api.php' );
37require_api( 'helper_api.php' );
38require_api( 'lang_api.php' );
39require_api( 'print_api.php' );
40
41form_security_validate( 'bug_relationship_delete' );
42
43$f_rel_id = gpc_get_int( 'rel_id' );
44$f_bug_id = gpc_get_int( 'bug_id' );
45
46$t_data = array(
47	'query' => array(
48		'issue_id' => $f_bug_id,
49		'relationship_id' => $f_rel_id
50	)
51);
52
53helper_ensure_confirmed( lang_get( 'delete_relationship_sure_msg' ), lang_get( 'delete' ) );
54
55$t_command = new IssueRelationshipDeleteCommand( $t_data );
56$t_command->execute();
57
58form_security_purge( 'bug_relationship_delete' );
59
60print_header_redirect_view( $f_bug_id );
61