X-Git-Url: http://git.vanrenterghem.biz/www.vanrenterghem.biz.git/blobdiff_plain/4b1ce0d83844cfd7c55e75a60ccb239882cd62e3..83ab5456767602f2a9860a7db7247f002ec96945:/phpBB2_old/admin/admin_disallow.php diff --git a/phpBB2_old/admin/admin_disallow.php b/phpBB2_old/admin/admin_disallow.php deleted file mode 100644 index 48cba98..0000000 --- a/phpBB2_old/admin/admin_disallow.php +++ /dev/null @@ -1,146 +0,0 @@ -sql_query( $sql ); - if ( !$result ) - { - message_die(GENERAL_ERROR, "Could not add disallowed user.", "",__LINE__, __FILE__, $sql); - } - $message = $lang['Disallow_successful']; - } - - $message .= "

" . sprintf($lang['Click_return_disallowadmin'], "", "") . "

" . sprintf($lang['Click_return_admin_index'], "", ""); - - message_die(GENERAL_MESSAGE, $message); -} -else if( isset($HTTP_POST_VARS['delete_name']) ) -{ - $disallowed_id = ( isset($HTTP_POST_VARS['disallowed_id']) ) ? intval( $HTTP_POST_VARS['disallowed_id'] ) : intval( $HTTP_GET_VARS['disallowed_id'] ); - - $sql = "DELETE FROM " . DISALLOW_TABLE . " - WHERE disallow_id = $disallowed_id"; - $result = $db->sql_query($sql); - if( !$result ) - { - message_die(GENERAL_ERROR, "Couldn't removed disallowed user.", "",__LINE__, __FILE__, $sql); - } - - $message .= $lang['Disallowed_deleted'] . "

" . sprintf($lang['Click_return_disallowadmin'], "", "") . "

" . sprintf($lang['Click_return_admin_index'], "", ""); - - message_die(GENERAL_MESSAGE, $message); - -} - -// -// Grab the current list of disallowed usernames... -// -$sql = "SELECT * - FROM " . DISALLOW_TABLE; -$result = $db->sql_query($sql); -if( !$result ) -{ - message_die(GENERAL_ERROR, "Couldn't get disallowed users.", "", __LINE__, __FILE__, $sql ); -} - -$disallowed = $db->sql_fetchrowset($result); - -// -// Ok now generate the info for the template, which will be put out no matter -// what mode we are in. -// -$disallow_select = ''; - -$template->set_filenames(array( - "body" => "admin/disallow_body.tpl") -); - -$template->assign_vars(array( - "S_DISALLOW_SELECT" => $disallow_select, - "S_FORM_ACTION" => append_sid("admin_disallow.$phpEx"), - - "L_INFO" => $output_info, - "L_DISALLOW_TITLE" => $lang['Disallow_control'], - "L_DISALLOW_EXPLAIN" => $lang['Disallow_explain'], - "L_DELETE" => $lang['Delete_disallow'], - "L_DELETE_DISALLOW" => $lang['Delete_disallow_title'], - "L_DELETE_EXPLAIN" => $lang['Delete_disallow_explain'], - "L_ADD" => $lang['Add_disallow'], - "L_ADD_DISALLOW" => $lang['Add_disallow_title'], - "L_ADD_EXPLAIN" => $lang['Add_disallow_explain'], - "L_USERNAME" => $lang['Username']) -); - -$template->pparse("body"); - -include('./page_footer_admin.'.$phpEx); - -?> \ No newline at end of file