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