Changeset 16877


Ignore:
Timestamp:
2007/12/03 15:45:35 (16 years ago)
Author:
naka
Message:

モジュール呼び出しパスの修正

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/feature-module-update/html/admin/load_module_config.php

    r16641 r16877  
    3939 
    4040    $objQuery = new SC_Query(); 
    41     $arrRet = $objQuery->select("module_name", "dtb_module", "module_id = ?", array($module_id)); 
     41    $arrRet = $objQuery->select("module_code", "dtb_module", "module_id = ?", array($module_id)); 
    4242 
    43     if (isset($arrRet[0]['module_name'])) { 
    44         $config_path = MODULE_PATH . $arrRet[0]['module_name'] . '/config.php'; 
     43    if (isset($arrRet[0]['module_code'])) { 
     44        $config_path = MODULE_PATH . $arrRet[0]['module_code'] . '/config.php'; 
    4545 
    4646        if (file_exists($config_path)) { 
Note: See TracChangeset for help on using the changeset viewer.