mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-04-30 07:42:11 +09:00
issue 449, removed default value of 2nd argument of getModuleInfoByMid()
git-svn-id: http://xe-core.googlecode.com/svn/branches/1.5.0@9636 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
parent
cbaa09ea3d
commit
3ea1e07541
3 changed files with 19 additions and 19 deletions
|
|
@ -30,22 +30,22 @@
|
|||
|
||||
Context::set('total_count', $output->total_count);
|
||||
Context::set('total_page', $output->total_page);
|
||||
Context::set('page', $output->page);
|
||||
Context::set('page', $output->page);
|
||||
Context::set('menu_list', $output->data);
|
||||
Context::set('page_navigation', $output->page_navigation);
|
||||
|
||||
|
||||
//Security
|
||||
$security = new Security();
|
||||
$security->encodeHTML('menu_list..title');
|
||||
|
||||
$security->encodeHTML('menu_list..title');
|
||||
|
||||
$this->setTemplateFile('index');
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* @brief Page to insert a menu
|
||||
**/
|
||||
function dispMenuAdminInsert() {
|
||||
// Set the menu with menu information
|
||||
// Set the menu with menu information
|
||||
$menu_srl = Context::get('menu_srl');
|
||||
|
||||
if($menu_srl) {
|
||||
|
|
@ -57,7 +57,7 @@
|
|||
|
||||
$this->setTemplateFile('menu_insert');
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* @brief Menu admin page
|
||||
**/
|
||||
|
|
@ -75,7 +75,7 @@
|
|||
|
||||
//Security
|
||||
$security = new Security();
|
||||
$security->encodeHTML('menu_info..title');
|
||||
$security->encodeHTML('menu_info..title');
|
||||
|
||||
// Set the layout to be pop-up
|
||||
$this->setTemplateFile('menu_management');
|
||||
|
|
@ -107,7 +107,7 @@
|
|||
$security->encodeHTML('module_category..title');
|
||||
$security->encodeHTML('module_list..module');
|
||||
$security->encodeHTML('mid_list..module');
|
||||
$security->encodeHTML('mid_list..browser_title');
|
||||
$security->encodeHTML('mid_list..browser_title');
|
||||
|
||||
// Set a template file
|
||||
$this->setTemplateFile('mid_list');
|
||||
|
|
@ -184,7 +184,7 @@
|
|||
{
|
||||
unset($midInfo);
|
||||
unset($moduleInfo);
|
||||
$midInfo = $oModuleModel->getModuleInfoByMid($menu['url']);
|
||||
$midInfo = $oModuleModel->getModuleInfoByMid($menu['url'], 0);
|
||||
$moduleInfo = $oModuleModel->getModuleInfoXml($midInfo->module);
|
||||
if($moduleInfo->setup_index_act)
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue