Ignore:
Timestamp:
2012/05/14 00:54:43 (12 years ago)
Author:
Seasoft
Message:

#1613 (typo修正・ソース整形・ソースコメントの改善)

Location:
branches/version-2_12-dev/data/class/pages/frontparts
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/version-2_12-dev/data/class/pages/frontparts/LC_Page_FrontParts_LoginCheck.php

    r21805 r21829  
    7878        // リクエスト値をフォームにセット 
    7979        $objFormParam->setParam($_POST); 
    80          
     80 
    8181        $url = htmlspecialchars($_POST['url'], ENT_QUOTES); 
    8282 
     
    111111                    $objCookie->setCookie('login_email', ''); 
    112112                } 
    113                  
     113 
    114114                // 遷移先の制御 
    115115                if (count($arrErr) == 0) { 
  • branches/version-2_12-dev/data/class/pages/frontparts/bloc/LC_Page_FrontParts_Bloc_Calendar.php

    r21771 r21829  
    9191    function lfGetCalendar($disp_month = 1) { 
    9292 
    93         $today = date("Y/m/d"); 
     93        $today = date('Y/m/d'); 
    9494        for ($j = 0; $j <= $disp_month-1; ++$j) { 
    9595            $year = date('Y'); 
     
    121121                } 
    122122 
    123                 if ($today === sprintf("%04d/%02d/%02d", $year, $month, $objDay->day)) { 
     123                if ($today === sprintf('%04d/%02d/%02d', $year, $month, $objDay->day)) { 
    124124                    $arrCalendar[$j][$i]['today'] = true; 
    125125                } 
Note: See TracChangeset for help on using the changeset viewer.