Minahito
minah****@users*****
2006年 7月 13日 (木) 19:45:54 JST
Index: xoops2jp/html/modules/user/admin/actions/RanksDeleteAction.class.php diff -u xoops2jp/html/modules/user/admin/actions/RanksDeleteAction.class.php:1.1.2.2 xoops2jp/html/modules/user/admin/actions/RanksDeleteAction.class.php:1.1.2.3 --- xoops2jp/html/modules/user/admin/actions/RanksDeleteAction.class.php:1.1.2.2 Tue Mar 28 22:31:14 2006 +++ xoops2jp/html/modules/user/admin/actions/RanksDeleteAction.class.php Thu Jul 13 19:45:54 2006 @@ -1,4 +1,8 @@ <?php +/** + * @package user + * @version $Id: RanksDeleteAction.class.php,v 1.1.2.3 2006/07/13 10:45:54 minahito Exp $ + */ if (!defined('XOOPS_ROOT_PATH')) exit(); @@ -9,7 +13,7 @@ { function _getId() { - return isset($_REQUEST['rank_id']) ? $_REQUEST['rank_id'] : 0; + return xoops_getrequest('rank_id'); } function &_getHandler() @@ -20,7 +24,7 @@ function _setupActionForm() { - $this->mActionForm =& new RanksAdminDeleteForm(); + $this->mActionForm =& new User_RanksAdminDeleteForm(); $this->mActionForm->prepare(); } @@ -38,7 +42,12 @@ function executeViewError(&$controller, &$xoopsUser, &$render) { - redirect_header("./index.php?action=RanksList", 1, _AD_USER_ERROR_DBUPDATE_FAILED); + $controller->executeRedirect("./index.php?action=RanksList", 1, _AD_USER_ERROR_DBUPDATE_FAILED); + } + + function executeViewCancel(&$controller, &$xoopsUser, &$render) + { + $controller->executeForward("./index.php?action=RanksList"); } }