Minahito
minah****@users*****
2006年 11月 16日 (木) 17:14:12 JST
Index: xoops2jp/html/modules/pm/pmlite.php diff -u xoops2jp/html/modules/pm/pmlite.php:1.1.2.5.2.1 xoops2jp/html/modules/pm/pmlite.php:removed --- xoops2jp/html/modules/pm/pmlite.php:1.1.2.5.2.1 Thu Sep 28 14:04:21 2006 +++ xoops2jp/html/modules/pm/pmlite.php Thu Nov 16 17:14:12 2006 @@ -1,24 +0,0 @@ -<?php -/** - * @package pm - * @version $Id: pmlite.php,v 1.1.2.5.2.1 2006/09/28 05:04:21 minahito Exp $ - */ - -require_once "../../mainfile.php"; -require_once XOOPS_ROOT_PATH . "/header.php"; -require_once XOOPS_MODULE_PATH . "/pm/class/ActionFrame.class.php"; - -$root =& XCube_Root::getSingleton(); - -$moduleRunner =& new Pm_ActionFrame(false); -$moduleRunner->setActionName("pmlite"); - -$root->mController->setDialogMode(true); - -$root->mController->mExecute->add(array(&$moduleRunner, 'execute')); - -$root->mController->execute(); - -require_once XOOPS_ROOT_PATH . "/footer.php"; - -?> Index: xoops2jp/html/modules/pm/index.php diff -u xoops2jp/html/modules/pm/index.php:1.1.2.4.2.1 xoops2jp/html/modules/pm/index.php:removed --- xoops2jp/html/modules/pm/index.php:1.1.2.4.2.1 Thu Sep 28 14:04:21 2006 +++ xoops2jp/html/modules/pm/index.php Thu Nov 16 17:14:12 2006 @@ -1,24 +0,0 @@ -<?php -/** - * @package pm - * @version $Id: index.php,v 1.1.2.4.2.1 2006/09/28 05:04:21 minahito Exp $ - */ - -require_once "../../mainfile.php"; -require_once XOOPS_ROOT_PATH . "/header.php"; -require_once XOOPS_MODULE_PATH . "/pm/class/ActionFrame.class.php"; - -$root =& XCube_Root::getSingleton(); - -$actionName = isset($_GET['action']) ? trim($_GET['action']) : "default"; - -$moduleRunner =& new Pm_ActionFrame(false); -$moduleRunner->setActionName($actionName); - -$root->mController->mExecute->add(array(&$moduleRunner, 'execute')); - -$root->mController->execute(); - -require_once XOOPS_ROOT_PATH . "/footer.php"; - -?>