Ignore:
Timestamp:
2006/11/06 13:35:28 (20 years ago)
Author:
kakinaka
Message:

* empty log message *

File:
1 edited

Legend:

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

    r7450 r7451  
    186186    $arrRet = $objQuery->select("module_id, extern_php, other_files, install_sql, latest_version", "dtb_module", "module_id = ?", array($_POST['module_id'])); 
    187187    $flg_ok = true; // ½èÍý¤ÎÀ®¸ùȽÄê 
    188     /* 
     188     
    189189    if(count($arrRet) > 0) { 
    190190        $arrFiles = array(); 
     
    204204        $flg_ok = false; 
    205205    } 
    206     */ 
    207     $objQuery->getlastquery(); 
     206     
    208207    // ɬÍפÊSQLʸ¤Î¼Â¹Ô 
    209208    if($arrRet[0]['install_sql'] != "") { 
     
    225224        } 
    226225    } 
    227     /* 
     226     
    228227    if($flg_ok) {        
    229228        $path = MODULE_PATH . $arrRet[0]['extern_php']; 
     
    232231        $objQuery->update("dtb_module", $sqlval, "module_id = ?", array($arrRet[0]['module_id'])); 
    233232    } 
    234     */ 
    235233} 
    236234 
     
    242240    $arrRet = $objQuery->select("module_id, extern_php, other_files, install_sql, uninstall_sql, latest_version", "dtb_module", "module_id = ?", array($_POST['module_id'])); 
    243241    $flg_ok = true; // ½èÍý¤ÎÀ®¸ùȽÄê 
     242     
     243    $objQuery->getLastQuery(); 
    244244     
    245245    if(count($arrRet) > 0) { 
     
    249249        } 
    250250        $arrFiles[] = $arrRet[0]['extern_php']; 
    251          
     251        /* 
    252252        foreach($arrFiles as $val) { 
    253253            $path = MODULE_PATH . $val; 
     
    259259            } 
    260260        } 
    261          
     261        */ 
    262262        // ɬÍפÊSQLʸ¤Î¼Â¹Ô 
    263263        if($arrRet[0]['uninstall_sql'] != "") { 
     
    279279    } 
    280280 
     281    /* 
    281282    if($flg_ok) { 
    282283        // ¥Ð¡¼¥¸¥ç¥ó¾ðÊó¤òºï½ü¤¹¤ë¡£ 
     
    285286        $objQuery->update("dtb_module", $sqlval, "module_id = ?", array($arrRet[0]['module_id'])); 
    286287    } 
     288    */ 
    287289} 
    288290 
Note: See TracChangeset for help on using the changeset viewer.