From b0ad8c2ae5d6fd2bd3d1d84fae197aa81d0269be Mon Sep 17 00:00:00 2001 From: SMaker Date: Fri, 15 Nov 2013 17:06:06 +0900 Subject: [PATCH] =?UTF-8?q?moduleModel::getModuleInfoXml()=EC=97=90?= =?UTF-8?q?=EC=84=9C=20standalone=20=EC=86=8D=EC=84=B1=EC=9D=84=20?= =?UTF-8?q?=EC=B2=98=EB=A6=AC=ED=95=98=EB=8A=94=20=EB=B6=80=EB=B6=84=20?= =?UTF-8?q?=EC=A0=9C=EA=B1=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- modules/module/module.model.php | 3 --- 1 file changed, 3 deletions(-) diff --git a/modules/module/module.model.php b/modules/module/module.model.php index d260abc7b..bcedeac73 100644 --- a/modules/module/module.model.php +++ b/modules/module/module.model.php @@ -832,7 +832,6 @@ class moduleModel extends module $type = $action->attrs->type; $grant = $action->attrs->grant?$action->attrs->grant:'guest'; - $standalone = $action->attrs->standalone=='true'?'true':'false'; $ruleset = $action->attrs->ruleset?$action->attrs->ruleset:''; $method = $action->attrs->method?$action->attrs->method:''; @@ -845,7 +844,6 @@ class moduleModel extends module $info->action->{$name} = new stdClass(); $info->action->{$name}->type = $type; $info->action->{$name}->grant = $grant; - $info->action->{$name}->standalone = $standalone=='true'?true:false; $info->action->{$name}->ruleset = $ruleset; $info->action->{$name}->method = $method; if($action->attrs->menu_name) @@ -867,7 +865,6 @@ class moduleModel extends module $buff .= sprintf('$info->action->%s->type=\'%s\';', $name, $type); $buff .= sprintf('$info->action->%s->grant=\'%s\';', $name, $grant); - $buff .= sprintf('$info->action->%s->standalone=%s;', $name, $standalone); $buff .= sprintf('$info->action->%s->ruleset=\'%s\';', $name, $ruleset); $buff .= sprintf('$info->action->%s->method=\'%s\';', $name, $method);