mirror of
https://github.com/boostorg/website.git
synced 2026-01-23 18:12:16 +00:00
21 lines
639 B
PHP
21 lines
639 B
PHP
<?php
|
|
# phpWebNotes - a php based note addition system
|
|
# Copyright (C) 2000-2002 Webnotes Team - webnotes-devel@sourceforge.net
|
|
# This program is distributed under the terms and conditions of the GPL
|
|
# See the files README and LICENSE for details
|
|
|
|
# --------------------------------------------------------
|
|
# $Id$
|
|
# --------------------------------------------------------
|
|
|
|
require_once( 'core' . DIRECTORY_SEPARATOR . 'api.php' );
|
|
|
|
login_cookie_check();
|
|
|
|
access_ensure_check_action( ACTION_USERS_DELETE );
|
|
|
|
$f_user_id = gpc_get_int( 'f_user_id' );
|
|
user_delete( $f_user_id );
|
|
|
|
util_header_redirect( $g_admin_manage_users );
|
|
?>
|