[xoops-cvslog 4589] CVS update: xoops2jp/html/modules/user/actions

Back to archive index

Minahito minah****@users*****
2006年 9月 24日 (日) 19:37:31 JST


Index: xoops2jp/html/modules/user/actions/UserActivateAction.class.php
diff -u xoops2jp/html/modules/user/actions/UserActivateAction.class.php:1.1.2.5 xoops2jp/html/modules/user/actions/UserActivateAction.class.php:1.1.2.6
--- xoops2jp/html/modules/user/actions/UserActivateAction.class.php:1.1.2.5	Fri Aug 18 14:35:30 2006
+++ xoops2jp/html/modules/user/actions/UserActivateAction.class.php	Sun Sep 24 19:37:30 2006
@@ -1,7 +1,7 @@
 <?php
 /**
  * @package user
- * @version $Id: UserActivateAction.class.php,v 1.1.2.5 2006/08/18 05:35:30 minahito Exp $
+ * @version $Id: UserActivateAction.class.php,v 1.1.2.6 2006/09/24 10:37:30 minahito Exp $
  */
 
 if (!defined('XOOPS_ROOT_PATH')) exit();
@@ -47,7 +47,7 @@
 		}
 
 		if ($this->mObject->get('actkey') != xoops_getrequest('actkey')) {
-			$controller->executeRedirect(XOOPS_URL, 3, _MD_USER_MESSAGE_ACTKEYNOT);
+			$controller->executeRedirect(XOOPS_URL . '/', 3, _MD_USER_MESSAGE_ACTKEYNOT);
 		} 
 
 		if ($this->mObject->get('level') > 1) {
@@ -67,9 +67,9 @@
 			$director->contruct($builder);
 			$mailer=&$builder->getResult();
 			if ($mailer->send()) {
-				$controller->executeRedirect(XOOPS_URL, 5, sprintf(_MD_USER_MESSAGE_ACTVMAILOK, $this->mObject->get('uname')));
+				$controller->executeRedirect(XOOPS_URL . '/', 5, sprintf(_MD_USER_MESSAGE_ACTVMAILOK, $this->mObject->get('uname')));
 			} else {
-				$controller->executeRedirect(XOOPS_URL, 5, sprintf(_MD_USER_MESSAGE_ACTVMAILNG, $this->mObject->get('uname')));
+				$controller->executeRedirect(XOOPS_URL . '/', 5, sprintf(_MD_USER_MESSAGE_ACTVMAILNG, $this->mObject->get('uname')));
 			}
 		} else {
 			$controller->executeRedirect(XOOPS_URL . '/user.php', 5, _MD_USER_MESSAGE_ACTLOGIN);
Index: xoops2jp/html/modules/user/actions/LostPassAction.class.php
diff -u xoops2jp/html/modules/user/actions/LostPassAction.class.php:1.1.2.6 xoops2jp/html/modules/user/actions/LostPassAction.class.php:1.1.2.7
--- xoops2jp/html/modules/user/actions/LostPassAction.class.php:1.1.2.6	Sun Aug  6 00:46:28 2006
+++ xoops2jp/html/modules/user/actions/LostPassAction.class.php	Sun Sep 24 19:37:30 2006
@@ -1,7 +1,7 @@
 <?php
 /**
  * @package user
- * @version $Id: LostPassAction.class.php,v 1.1.2.6 2006/08/05 15:46:28 nobunobu Exp $
+ * @version $Id: LostPassAction.class.php,v 1.1.2.7 2006/09/24 10:37:30 minahito Exp $
  */
 
 if (!defined('XOOPS_ROOT_PATH')) exit();
@@ -118,12 +118,12 @@
 
 	function executeViewSuccess(&$controller, &$xoopsUser, &$render)
 	{
-		$controller->executeRedirect(XOOPS_URL, 3, _MD_USER_MESSAGE_SEND_PASSWORD);
+		$controller->executeRedirect(XOOPS_URL . '/', 3, _MD_USER_MESSAGE_SEND_PASSWORD);
 	}
 
 	function executeViewError(&$controller, &$xoopsUser, &$render)
 	{
-		$controller->executeRedirect(XOOPS_URL, 3, _MD_USER_ERROR_SEND_MAIL);
+		$controller->executeRedirect(XOOPS_URL . '/', 3, _MD_USER_ERROR_SEND_MAIL);
 	}
 }
 


xoops-cvslog メーリングリストの案内
Back to archive index