Changeset 5094 for temp/trunk/html


Ignore:
Timestamp:
2006/09/18 18:25:04 (20 years ago)
Author:
kakinaka
Message:

blank

File:
1 edited

Legend:

Unmodified
Added
Removed
  • temp/trunk/html/install/index.php

    r5093 r5094  
    146146    if ($arrRet['db_type'] == 'pgsql'){ 
    147147        // ¥Ó¥å¡¼¤Îºï½ü 
    148         $objPage->arrErr = lfExecuteSQL("./drop_view.sql", $arrRet['db_user'], $arrRet['db_password'], $arrRet['db_server'], $arrRet['db_name'], $arrRet['db_type'], $arrRet['db_port']);  
     148        $objPage->arrErr = lfExecuteSQL("./drop_view.sql", $arrRet['db_user'], $arrRet['db_password'], $arrRet['db_server'], $arrRet['db_name'], $arrRet['db_type'], $arrRet['db_port'], false);  
    149149        if(count($objPage->arrErr) == 0) { 
    150150            $objPage->tpl_message.="¡û¡§¥Ó¥å¡¼¤Îºï½ü¤ËÀ®¸ù¤·¤Þ¤·¤¿¡£<br>"; 
     
    157157    // ¥Æ¡¼¥Ö¥ë¤Îºï½ü 
    158158    if(count($objPage->arrErr) == 0) { 
    159         $objPage->arrErr = lfExecuteSQL("./drop_table_".$arrRet['db_type'].".sql", $arrRet['db_user'], $arrRet['db_password'], $arrRet['db_server'], $arrRet['db_name'], $arrRet['db_type'], $arrRet['db_port']);  
     159        $objPage->arrErr = lfExecuteSQL("./drop_table.sql", $arrRet['db_user'], $arrRet['db_password'], $arrRet['db_server'], $arrRet['db_name'], $arrRet['db_type'], $arrRet['db_port'], false);  
    160160        if(count($objPage->arrErr) == 0) { 
    161161            $objPage->tpl_message.="¡û¡§¥Æ¡¼¥Ö¥ë¤Îºï½ü¤ËÀ®¸ù¤·¤Þ¤·¤¿¡£<br>"; 
     
    447447 
    448448// SQLʸ¤Î¼Â¹Ô 
    449 function lfExecuteSQL($filepath, $db_user, $db_password, $db_server, $db_name, $db_type, $db_port, $disp_err = false) { 
     449function lfExecuteSQL($filepath, $db_user, $db_password, $db_server, $db_name, $db_type, $db_port, $disp_err = true) { 
    450450    $arrErr = array(); 
    451451 
Note: See TracChangeset for help on using the changeset viewer.