Ignore:
Timestamp:
2011/03/04 19:51:32 (13 years ago)
Author:
shutta
Message:

拡張クラス(/class_extends/)が存在するのに基底クラス(/class/)のメソッドを呼び出している部分を拡張クラスに書き換え。

File:
1 edited

Legend:

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

    r20454 r20484  
    116116            $prev_path = USER_INC_REALDIR . 'preview/bloc_preview.tpl'; 
    117117            // ディレクトリの作成 
    118             SC_Utils::sfMakeDir($prev_path); 
     118            SC_Utils_Ex::sfMakeDir($prev_path); 
    119119            $res = file_put_contents($prev_path, $_POST['bloc_html']); 
    120120            if ($res === false) { 
     
    148148                $new_bloc_path = $package_path . $_POST['filename'] . ".tpl"; 
    149149                // ディレクトリの作成 
    150                 SC_Utils::sfMakeDir($new_bloc_path); 
     150                SC_Utils_Ex::sfMakeDir($new_bloc_path); 
    151151                $res = file_put_contents($new_bloc_path, $_POST['bloc_html']); 
    152152                if ($res === false) { 
     
    202202            break; 
    203203        default: 
    204             GC_Utils::gfPrintLog("MODEエラー:".$this->getMode()); 
     204            GC_Utils_Ex::gfPrintLog("MODEエラー:".$this->getMode()); 
    205205            break; 
    206206        } 
Note: See TracChangeset for help on using the changeset viewer.