Ignore:
Timestamp:
2006/09/21 17:16:26 (20 years ago)
Author:
kakinaka
Message:

blank

File:
1 edited

Legend:

Unmodified
Added
Removed
  • temp/trunk/html/admin/system/update.php

    r5162 r5302  
    142142                $sqlval['main_php'] = $arrCSV[5]; 
    143143                $sqlval['extern_php'] = $arrCSV[6]; 
    144                 $sqlval['sql'] = $arrCSV[7]; 
     144                $sqlval['install_sql'] = $arrCSV[7]; 
    145145                $sqlval['uninstall_sql'] = $arrCSV[8];               
    146146                $sqlval['other_files'] = $arrCSV[9]; 
     
    169169     
    170170    $objQuery = new SC_Query(); 
    171     $arrRet = $objQuery->select("module_id, extern_php, other_files, sql, latest_version", "dtb_update", "module_id = ?", array($_POST['module_id'])); 
     171    $arrRet = $objQuery->select("module_id, extern_php, other_files, install_sql, latest_version", "dtb_update", "module_id = ?", array($_POST['module_id'])); 
    172172    $flg_ok = true; // ½èÍý¤ÎÀ®¸ùȽÄê 
    173173     
     
    217217     
    218218    $objQuery = new SC_Query(); 
    219     $arrRet = $objQuery->select("module_id, extern_php, other_files, sql, uninstall_sql, latest_version", "dtb_update", "module_id = ?", array($_POST['module_id'])); 
     219    $arrRet = $objQuery->select("module_id, extern_php, other_files, install_sql, uninstall_sql, latest_version", "dtb_update", "module_id = ?", array($_POST['module_id'])); 
    220220    $flg_ok = true; // ½èÍý¤ÎÀ®¸ùȽÄê 
    221221     
Note: See TracChangeset for help on using the changeset viewer.