Ignore:
Timestamp:
2011/03/07 15:23:39 (13 years ago)
Author:
Seasoft
Message:

#627(ソース整形・ソースコメントの改善)
#628(未使用処理・定義などの削除)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/version-2_5-dev/data/class/pages/admin/system/LC_Page_Admin_System_Bkup.php

    r20534 r20538  
    321321        if ($success) { 
    322322            // dataをCSV出力 
    323             $fp = fopen($csv_file,"w"); 
     323            $fp = fopen($csv_file,'w'); 
    324324            if($fp) { 
    325325                if($csv_data != ""){ 
     
    330330 
    331331            // 自動採番をCSV出力 
    332             $fp = fopen($csv_autoinc_file,"w"); 
     332            $fp = fopen($csv_autoinc_file,'w'); 
    333333            if($fp) { 
    334334                if($csv_autoinc != ""){ 
     
    503503 
    504504        // csvファイルからデータの取得 
    505         $fp = fopen($csv, "r"); 
     505        $fp = fopen($csv, 'r'); 
    506506        while (!feof($fp)) { 
    507507            $data = fgetcsv($fp, 1000000); 
Note: See TracChangeset for help on using the changeset viewer.