Minahito
minah****@users*****
2006年 8月 1日 (火) 19:27:21 JST
Index: xoops2jp/html/modules/base/admin/actions/AbstractModuleInstallAction.class.php diff -u xoops2jp/html/modules/base/admin/actions/AbstractModuleInstallAction.class.php:1.1.2.8 xoops2jp/html/modules/base/admin/actions/AbstractModuleInstallAction.class.php:1.1.2.9 --- xoops2jp/html/modules/base/admin/actions/AbstractModuleInstallAction.class.php:1.1.2.8 Thu Jul 27 14:58:11 2006 +++ xoops2jp/html/modules/base/admin/actions/AbstractModuleInstallAction.class.php Tue Aug 1 19:27:20 2006 @@ -1,7 +1,7 @@ <?php /** * @package Legacy - * @version $Id: AbstractModuleInstallAction.class.php,v 1.1.2.8 2006/07/27 05:58:11 minahito Exp $ + * @version $Id: AbstractModuleInstallAction.class.php,v 1.1.2.9 2006/08/01 10:27:20 minahito Exp $ */ if (!defined('XOOPS_ROOT_PATH')) exit(); @@ -31,14 +31,14 @@ function getDefaultView(&$controller, &$xoopsUser) { - $dirname = trim($_GET['dirname']); + $dirname = trim(xoops_getrequest('dirname')); $installer =& $this->_getInstaller($dirname); $this->mModuleObject =& $installer->loadModuleObject($dirname); if (!is_object($this->mModuleObject)) { - $this->mLogLog =& $installer->getLog(); + $this->mLog =& $installer->getLog(); return LEGACY_FRAME_VIEW_ERROR; } @@ -93,7 +93,7 @@ { } - function executeViewIndex(&$controller,&$xoopsUser,&$renderer) + function executeViewError(&$controller,&$xoopsUser,&$renderer) { $renderer->setTemplateName("install_wizard_error.html"); $renderer->setAttribute('log', $this->mLog);