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

Back to archive index

Minahito minah****@users*****
2006年 8月 7日 (月) 20:28:29 JST


Index: xoops2jp/html/modules/base/admin/actions/ModuleUpdateAction.class.php
diff -u xoops2jp/html/modules/base/admin/actions/ModuleUpdateAction.class.php:1.1.2.6 xoops2jp/html/modules/base/admin/actions/ModuleUpdateAction.class.php:1.1.2.7
--- xoops2jp/html/modules/base/admin/actions/ModuleUpdateAction.class.php:1.1.2.6	Thu Jul 27 14:58:56 2006
+++ xoops2jp/html/modules/base/admin/actions/ModuleUpdateAction.class.php	Mon Aug  7 20:28:29 2006
@@ -1,7 +1,7 @@
 <?php
 /**
  * @package Legacy
- * @version $Id: ModuleUpdateAction.class.php,v 1.1.2.6 2006/07/27 05:58:56 minahito Exp $
+ * @version $Id: ModuleUpdateAction.class.php,v 1.1.2.7 2006/08/07 11:28:29 minahito Exp $
  */
 
 if (!defined('XOOPS_ROOT_PATH')) exit();
@@ -13,12 +13,12 @@
 class Legacy_ModuleUpdateAction extends Legacy_AbstractModuleInstallAction
 {
 	/**
-	 * @var XCube_NewDelegate
+	 * @var XCube_Delegate
 	 */
 	var $mUpdateSuccess = null;
 	
 	/**
-	 * @var XCube_NewDelegate
+	 * @var XCube_Delegate
 	 */
 	var $mUpdateFail = null;
 
@@ -26,10 +26,10 @@
 	{
 		parent::Legacy_AbstractModuleInstallAction($flag);
 		
-		$this->mUpdateSuccess =& new XCube_NewDelegate();
+		$this->mUpdateSuccess =& new XCube_Delegate();
 		$this->mUpdateSuccess->register('Legacy_ModuleUpdateAction.UpdateSuccess');
 		
-		$this->mUpdateFail =& new XCube_NewDelegate();
+		$this->mUpdateFail =& new XCube_Delegate();
 		$this->mUpdateFail->register('Legacy_ModuleUpdateAction.UpdateFail');
 	}
 
Index: xoops2jp/html/modules/base/admin/actions/ModuleInstallAction.class.php
diff -u xoops2jp/html/modules/base/admin/actions/ModuleInstallAction.class.php:1.1.2.11 xoops2jp/html/modules/base/admin/actions/ModuleInstallAction.class.php:1.1.2.12
--- xoops2jp/html/modules/base/admin/actions/ModuleInstallAction.class.php:1.1.2.11	Tue Aug  1 19:34:29 2006
+++ xoops2jp/html/modules/base/admin/actions/ModuleInstallAction.class.php	Mon Aug  7 20:28:29 2006
@@ -1,7 +1,7 @@
 <?php
 /**
  * @package Legacy
- * @version $Id: ModuleInstallAction.class.php,v 1.1.2.11 2006/08/01 10:34:29 minahito Exp $
+ * @version $Id: ModuleInstallAction.class.php,v 1.1.2.12 2006/08/07 11:28:29 minahito Exp $
  */
 
  if (!defined('XOOPS_ROOT_PATH')) exit();
@@ -19,12 +19,12 @@
 	var $mLicenceText;
 
 	/**
-	 * @var XCube_NewDelegate
+	 * @var XCube_Delegate
 	 */
 	var $mInstallSuccess = null;
 	
 	/**
-	 * @var XCube_NewDelegate
+	 * @var XCube_Delegate
 	 */
 	var $mInstallFail = null;
 	
@@ -32,10 +32,10 @@
 	{
 		parent::Legacy_AbstractModuleInstallAction($flag);
 		
-		$this->mInstallSuccess =& new XCube_NewDelegate();
+		$this->mInstallSuccess =& new XCube_Delegate();
 		$this->mInstallSuccess->register('Legacy_ModuleInstallAction.InstallSuccess');
 		
-		$this->mInstallFail =& new XCube_NewDelegate();
+		$this->mInstallFail =& new XCube_Delegate();
 		$this->mInstallFail->register('Legacy_ModuleInstallAction.InstallFail');
 	}
 	
Index: xoops2jp/html/modules/base/admin/actions/ModuleUninstallAction.class.php
diff -u xoops2jp/html/modules/base/admin/actions/ModuleUninstallAction.class.php:1.1.2.6 xoops2jp/html/modules/base/admin/actions/ModuleUninstallAction.class.php:1.1.2.7
--- xoops2jp/html/modules/base/admin/actions/ModuleUninstallAction.class.php:1.1.2.6	Thu Jul 27 14:58:56 2006
+++ xoops2jp/html/modules/base/admin/actions/ModuleUninstallAction.class.php	Mon Aug  7 20:28:29 2006
@@ -1,6 +1,7 @@
 <?php
 /**
- * @version $Id: ModuleUninstallAction.class.php,v 1.1.2.6 2006/07/27 05:58:56 minahito Exp $
+ * @package Legacy
+ * @version $Id: ModuleUninstallAction.class.php,v 1.1.2.7 2006/08/07 11:28:29 minahito Exp $
  */
 
 if (!defined('XOOPS_ROOT_PATH')) exit();
@@ -15,12 +16,12 @@
 class Legacy_ModuleUninstallAction extends Legacy_AbstractModuleInstallAction
 {
 	/**
-	 * @var XCube_NewDelegate
+	 * @var XCube_Delegate
 	 */
 	var $mUninstallSuccess = null;
 	
 	/**
-	 * @var XCube_NewDelegate
+	 * @var XCube_Delegate
 	 */
 	var $mUninstallFail = null;
 	
@@ -28,10 +29,10 @@
 	{
 		parent::Legacy_AbstractModuleInstallAction($flag);
 		
-		$this->mUninstallSuccess =& new XCube_NewDelegate();
+		$this->mUninstallSuccess =& new XCube_Delegate();
 		$this->mUninstallSuccess->register('Legacy_ModuleUninstallAction.UninstallSuccess');
 		
-		$this->mUninstallFail =& new XCube_NewDelegate();
+		$this->mUninstallFail =& new XCube_Delegate();
 		$this->mUninstallFail->register('Legacy_ModuleUninstallAction.UninstallFail');
 	}
 


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