git-svn-id: http://xe-core.googlecode.com/svn/trunk@434 201d5d3c-b55e-5fd7-737f-ddc643e51545

This commit is contained in:
zero 2007-03-14 10:47:01 +00:00
parent 5c85f5c1fb
commit c0c9de426c

View file

@ -297,9 +297,10 @@
$args = sprintf('array(%s)', implode(',',$args_list));
}
if(!$args) $args = null;
// 플러그인 실행코드를 삽입
$output = sprintf('<?php PluginHandler::executePlugin("%s", %s); ?>', $plugin, $args);
return $output;
return sprintf('<?php PluginHandler::executePlugin("%s", %s); ?>', $plugin, $args);
}
/**