Minahito
minah****@users*****
2006年 8月 19日 (土) 21:01:40 JST
Index: xoops2jp/html/modules/user/actions/UserRegisterAction.class.php diff -u xoops2jp/html/modules/user/actions/UserRegisterAction.class.php:1.1.2.9 xoops2jp/html/modules/user/actions/UserRegisterAction.class.php:1.1.2.10 --- xoops2jp/html/modules/user/actions/UserRegisterAction.class.php:1.1.2.9 Fri Aug 18 14:35:30 2006 +++ xoops2jp/html/modules/user/actions/UserRegisterAction.class.php Sat Aug 19 21:01:40 2006 @@ -1,7 +1,7 @@ <?php /** * @package user - * @version $Id: UserRegisterAction.class.php,v 1.1.2.9 2006/08/18 05:35:30 minahito Exp $ + * @version $Id: UserRegisterAction.class.php,v 1.1.2.10 2006/08/19 12:01:40 minahito Exp $ */ if (!defined('XOOPS_ROOT_PATH')) exit(); @@ -60,12 +60,12 @@ { if ($this->mConfig['reg_dispdsclmr'] != 0 && $this->mConfig['reg_disclaimer'] != null) { $this->mEnableAgreeFlag = true; - $this->mActionForm =& new User_RegisterAgreeEditForm(); + $this->mActionForm =& new User_RegisterAgreeEditForm($this->mConfig); } else { - $this->mActionForm =& new User_RegisterEditForm(); + $this->mActionForm =& new User_RegisterEditForm($this->mConfig); } - $this->mActionForm->prepare($this->mConfig); + $this->mActionForm->prepare(); } function executeViewInput(&$controller,&$xoopsUser,&$renderSystem)