<?php
/************************************************************************/
/* ViperWeb: Web Portal System */
/* =========================== */
/* */
/* Copyright (c) 2002 by Raptr & Godboko */
/* http://development.ea-hq.net */
/* */
/* This program is free software. You can redistribute it and/or modify */
/* it under the terms of the GNU General Public License as published by */
/* the Free Software Foundation; either version 2 of the License. */
/* */
/* Based on PHP-Nuke found at http://www.phpnuke.org */
/************************************************************************/
/********************************************************/
/* Tweak_Your_Account for PHP-Nuke 5.6.0 + phpBB2 Port */
/* By: NukeScripts Network (hide@address.com) */
/* http://www.nukescripts.com */
/* Copyright © 2002 by NukeScripts Network */
/********************************************************/
if (!eregi("admin.php", $PHP_SELF)) { die ("Access Denied"); }
switch($op) {
case "mod_users":
case "modifyUser":
case "updateUser":
case "delUser":
case "delUserConf":
case "addUser":
case "approveUser":
case "approveUserConf":
case "suspendUser":
case "suspendUserConf":
case "detailsUser":
case "denyUser":
case "denyUserConf":
include("modules/Admin/modules/users.php");
break;
}
?>