Changeset 12097 for branches


Ignore:
Timestamp:
2007/04/04 23:23:52 (17 years ago)
Author:
naka
Message:
 
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/dev/data/downloads/module/security/security.php

    r12096 r12097  
    9393    return $arrResult; 
    9494} 
     95 
     96 
     97// install.inc¤Î¥Õ¥¡¥¤¥ë¤ò¥Á¥§¥Ã¥¯¤¹¤ë 
     98function sfCheckInstallInc() { 
     99    // install.inc¤Î¥Ñ¥¹¤ò¼èÆÀ¤¹¤ë 
     100    $inst_inc = DATA_PATH . 'install.inc'; 
     101    if(file_exists($inst_inc)) { 
     102        if($fp = fopen($inst_inc)) { 
     103            $data = fread($fp, filesize($inst_inc)); 
     104            fclose($fp); 
     105        } 
     106         
     107        $arrResult['result'] = "¡ß"; 
     108        $arrResult['detail'] = $data; 
     109         
     110         
     111    } else { 
     112        $arrResult['result'] = "¡û"; 
     113        $arrResult['detail'] = "install.inc¤Ï¡¢Â¸ºß¤·¤Þ¤»¤ó¡£";                
     114    } 
     115} 
     116 
    95117?> 
Note: See TracChangeset for help on using the changeset viewer.