Changeset 22822


Ignore:
Timestamp:
2013/05/19 13:42:45 (11 years ago)
Author:
Ringo
Message:

#2043 (typo修正・ソース整形・ソースコメントの改善 for 2.13.0) クラス名修正

Location:
branches/version-2_13-dev/data/class
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/version-2_13-dev/data/class/pages/admin/products/LC_Page_Admin_Products_UploadCSVCategory.php

    r22742 r22822  
    258258 
    259259        // カテゴリ件数を更新 
    260         SC_Helper_DB_EX::sfCountCategory($objQuery); 
     260        SC_Helper_DB_Ex::sfCountCategory($objQuery); 
    261261        return; 
    262262    } 
     
    610610        if (array_search($keyname, $this->arrFormKeyList) !== FALSE  //入力対象である 
    611611            && $item[$keyname] != ''   // 空ではない 
    612             && !SC_Helper_DB_EX::sfIsRecord($table, $keyname, (array)$item[$keyname]) //DBに存在するか 
     612            && !SC_Helper_DB_Ex::sfIsRecord($table, $keyname, (array)$item[$keyname]) //DBに存在するか 
    613613        ) { 
    614614            return false; 
  • branches/version-2_13-dev/data/class/util/SC_Utils.php

    r22736 r22822  
    18101810                // コピー先に無いディレクトリの場合、ディレクトリ作成. 
    18111811                if (!empty($filename) && !file_exists($dest_file_path)) mkdir($dest_file_path); 
    1812                 SC_Utils_EX::copyDirectory($cur_path . '/', $dest_file_path . '/'); 
     1812                SC_Utils_Ex::copyDirectory($cur_path . '/', $dest_file_path . '/'); 
    18131813            } else { 
    18141814                if (file_exists($dest_file_path)) unlink($dest_file_path); 
Note: See TracChangeset for help on using the changeset viewer.