File: manage_proj_delete_page.php

package info (click to toggle)
mantis 0.17.1-3
  • links: PTS
  • area: main
  • in suites: woody
  • size: 1,660 kB
  • ctags: 2,413
  • sloc: php: 8,828; sh: 612; sql: 458; makefile: 57
file content (29 lines) | stat: -rw-r--r-- 900 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
<?php
	# Mantis - a php based bugtracking system
	# Copyright (C) 2000, 2001  Kenzaburo Ito - kenito@300baud.org
	# This program is distributed under the terms and conditions of the GPL
	# See the README and LICENSE files for details
?>
<?php include( "core_API.php" ) ?>
<?php login_cookie_check() ?>
<?php
	db_connect( $g_hostname, $g_db_username, $g_db_password, $g_database_name );
	check_access( MANAGER );
?>
<?php print_page_top1() ?>
<?php print_page_top2() ?>

<p>
<div align="center">
	<?php print_hr( $g_hr_size, $g_hr_width ) ?>
	<?php echo $s_project_delete_msg ?>

	<form method="post" action="<?php echo $g_manage_project_delete ?>">
		<input type="hidden" name="f_project_id" value="<?php echo $f_project_id ?>">
		<input type="submit" value="<?php echo $s_project_delete_button ?>">
	</form>

	<?php print_hr( $g_hr_size, $g_hr_width ) ?>
</div>

<?php print_page_bot1( __FILE__ ) ?>