[xoops-cvslog 4767] CVS update: xoops2jp/html/modules/base/actions

Back to archive index

Minahito minah****@users*****
2006年 10月 5日 (木) 18:06:25 JST


Index: xoops2jp/html/modules/base/actions/NotifyCancelAction.class.php
diff -u xoops2jp/html/modules/base/actions/NotifyCancelAction.class.php:1.1.2.1 xoops2jp/html/modules/base/actions/NotifyCancelAction.class.php:1.1.2.1.2.1
--- xoops2jp/html/modules/base/actions/NotifyCancelAction.class.php:1.1.2.1	Wed Jul 26 19:53:00 2006
+++ xoops2jp/html/modules/base/actions/NotifyCancelAction.class.php	Thu Oct  5 18:06:25 2006
@@ -1,7 +1,7 @@
 <?php
 /**
  * @package Legacy
- * @version $Id: NotifyCancelAction.class.php,v 1.1.2.1 2006/07/26 10:53:00 minahito Exp $
+ * @version $Id: NotifyCancelAction.class.php,v 1.1.2.1.2.1 2006/10/05 09:06:25 minahito Exp $
  */
 
 if (!defined('XOOPS_ROOT_PATH')) exit();
@@ -10,12 +10,12 @@
 {
 	function getDefaultView(&$contoller, &$xoopsUser)
 	{
-		$contoller->executeForward(XOOPS_URL);
+		$contoller->executeForward(XOOPS_URL . '/');
 	}
 
 	function execute(&$contoller, &$xoopsUser)
 	{
-		$contoller->executeForward(XOOPS_URL);
+		$contoller->executeForward(XOOPS_URL . '/');
 	}
 }
 
Index: xoops2jp/html/modules/base/actions/SearchResultsAction.class.php
diff -u xoops2jp/html/modules/base/actions/SearchResultsAction.class.php:1.1.2.10 xoops2jp/html/modules/base/actions/SearchResultsAction.class.php:1.1.2.10.2.1
--- xoops2jp/html/modules/base/actions/SearchResultsAction.class.php:1.1.2.10	Mon Sep 25 18:34:29 2006
+++ xoops2jp/html/modules/base/actions/SearchResultsAction.class.php	Thu Oct  5 18:06:25 2006
@@ -36,7 +36,7 @@
 	function hasPermission(&$controller, &$xoopsUser)
 	{
 		if ($this->mConfig['enable_search'] != 1) {
-			$controller->executeRedirect(XOOPS_URL, 3, _MD_BASE_ERROR_SEARCH_NOT_ENABLED);
+			$controller->executeRedirect(XOOPS_URL . '/', 3, _MD_BASE_ERROR_SEARCH_NOT_ENABLED);
 			return false;
 		}
 		return true;
@@ -140,7 +140,7 @@
 
 	function executeViewError(&$controller, &$xoopsUser, &$render)
 	{
-		$controller->executeForward(XOOPS_URL);
+		$controller->executeForward(XOOPS_URL . '/');
 	}
 }
 


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