Ignore:
Timestamp:
2007/08/06 14:41:02 (17 years ago)
Author:
nanasess
Message:

slib.php のクラス化対応

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/feature-module-update/data/class/util/SC_Utils.php

    r15176 r15214  
    475475            if($disp_error) { 
    476476                // エラーページの表示 
    477                 sfDispError($ret); 
     477                SC_Utils::sfDispError($ret); 
    478478            } 
    479479            return false; 
     
    492492            // 管理画面から以外の遷移の場合はエラー画面を表示 
    493493            if (!preg_match($pattern, $referer)) { 
    494                 if ($disp_error) sfDispError(INVALID_MOVE_ERRORR); 
     494                if ($disp_error) SC_Utils::sfDispError(INVALID_MOVE_ERRORR); 
    495495                return false; 
    496496            } 
     
    13121312 
    13131313        // 整数且つ0出なければ桁数指定を行う 
    1314         if(sfIsInt($adjust) and $pow > 1){ 
     1314        if(SC_Utils::sfIsInt($adjust) and $pow > 1){ 
    13151315            $ret = (round($value * $adjust)/$adjust); 
    13161316        } 
Note: See TracChangeset for help on using the changeset viewer.