Changeset 6171 for temp/trunk


Ignore:
Timestamp:
2006/10/12 22:17:04 (20 years ago)
Author:
naka
Message:

* empty log message *

Location:
temp/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • temp/trunk/data/lib/slib.php

    r6162 r6171  
    24532453    // ¥Ç¥£¥ì¥¯¥È¥ê¤¬¤Ê¤±¤ì¤ÐºîÀ®¤¹¤ë 
    24542454    if(!file_exists($des)) { 
    2455         mkdir($des, $mod[2]); 
     2455        if(!mkdir($des, $mod[2])) { 
     2456            print($des); 
     2457        } 
    24562458    } 
    24572459     
  • temp/trunk/html/install/index.php

    r6170 r6171  
    521521        // Àܳ³Îǧ 
    522522        $dsn = $arrRet['db_type']."://".$arrRet['db_user'].":".$arrRet['db_password']."@".$arrRet['db_server'].":".$arrRet['db_port']."/".$arrRet['db_name']; 
    523          
    524         print($dsn); 
    525          
    526523        // Debug¥â¡¼¥É»ØÄê 
    527524        $options['debug'] = 9; 
    528525        $objDB = DB::connect($dsn, $options); 
     526         
     527        sfPrintR($objDB); 
     528         
    529529        // Àܳ¥¨¥é¡¼ 
    530530        if(PEAR::isError($objDB)) { 
Note: See TracChangeset for help on using the changeset viewer.