Changeset 5081


Ignore:
Timestamp:
2006/09/18 18:03:05 (20 years ago)
Author:
kakinaka
Message:

blank

File:
1 edited

Legend:

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

    r5080 r5081  
    3131$objWebParam = lfInitWebParam($objWebParam); 
    3232$objDBParam = lfInitDBParam($objDBParam); 
     33 
     34if ($_POST['db_type'] == 'pgsql') { 
     35    $_POST['db_port'] = ""; 
     36}else{ 
     37    $_POST['db_port'] = ":".$_POST['db_port']; 
     38    $objFormParam->setValue('db_port',$_POST['db_port']); 
     39} 
    3340 
    3441//¥Õ¥©¡¼¥àÇÛÎó¤Î¼èÆÀ 
     
    414421    $arrRet =  $objFormParam->getHashArray(); 
    415422     
    416     if ($arrRet['db_type'] == 'pgsql') { 
    417         $arrRet['db_port'] = ""; 
    418     }else{ 
    419         $arrRet['db_port'] = ":".$arrRet['db_port']; 
    420         $objFormParam->setValue('db_port',$arrRet['db_port']); 
    421     } 
    422      
    423423    $objErr = new SC_CheckError($arrRet); 
    424424    $objErr->arrErr = $objFormParam->checkError(); 
Note: See TracChangeset for help on using the changeset viewer.