Changeset 16209


Ignore:
Timestamp:
2007/10/01 12:31:03 (16 years ago)
Author:
nanasess
Message:

クラス化に伴う修正

  • FIXME コメント追加
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/feature-module-update/data/class/helper/SC_Helper_Mobile.php

    r16202 r16209  
    123123     * セッションデータが有効かどうかをチェックする。 
    124124     * 
     125     * FIXME "@" でエラーを抑制するのは良くない 
     126     * 
    125127     * @return boolean セッションデータが有効な場合は true、無効な場合は false を返す。 
    126128     */ 
     
    133135        // 有効期限を過ぎていないかどうかをチェックする。 
    134136        if (intval(@$_SESSION['mobile']['expires']) < time()) { 
    135             gfPrintLog("Session expired at " . 
     137            GC_Utils_Ex::gfPrintLog("Session expired at " . 
    136138                       date('Y/m/d H:i:s', @$_SESSION['mobile']['expires']) . 
    137139                       ' : sid=' . session_id()); 
     
    143145        $model = GC_MobileUserAgent::getModel(); 
    144146        if (@$_SESSION['mobile']['model'] != $model) { 
    145             gfPrintLog("User agent model mismatch : " . 
     147            GC_Utils_Ex::gfPrintLog("User agent model mismatch : " . 
    146148                       "\"$model\" != \"" . @$_SESSION['mobile']['model'] . 
    147149                       '" (expected), sid=' . session_id()); 
Note: See TracChangeset for help on using the changeset viewer.