- Timestamp:
- 2007/12/03 15:45:35 (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/feature-module-update/html/admin/load_module_config.php
r16641 r16877 39 39 40 40 $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)); 42 42 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'; 45 45 46 46 if (file_exists($config_path)) {
Note: See TracChangeset
for help on using the changeset viewer.