Menu

[r8]: / mantis / user_delete.php  Maximize  Restore  History

Download this file

41 lines (36 with data), 1.1 kB

 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
30
31
32
33
34
35
36
37
38
39
40
41
<?php
#Application name: PhpCollab
#Status page: 0
# Mantis - a php based bugtracking system
# Copyright (C) 2000 - 2002 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( "../mantis/core_API.php" ) ?>
<?php //login_cookie_check() ?>
<?php
db_connect( $g_hostname, $g_db_username, $g_db_password, $g_database_name );
//check_access( ADMINISTRATOR );
# delete account
if ( $f_protected!="on" ) {
# Remove aaccount
$query = "DELETE
FROM $g_mantis_user_table
WHERE id IN($id)";
$result = db_query( $query );
# Remove associated profiles
$query = "DELETE
FROM $g_mantis_user_profile_table
WHERE user_id IN($id)";
$result = db_query( $query );
# Remove associated preferences
$query = "DELETE
FROM $g_mantis_user_pref_table
WHERE user_id IN($id)";
$result = db_query( $query );
$query = "DELETE
FROM $g_mantis_project_user_list_table
WHERE user_id IN($id)";
$result = db_query( $query );
}
?>
Want the latest updates on software, tech news, and AI?
Get latest updates about software, tech news, and AI from SourceForge directly in your inbox once a month.