Ignore:
Timestamp:
2012/02/06 11:05:15 (14 years ago)
Author:
Seasoft
Message:

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

  • Zend Framework PHP 標準コーディング規約への準拠を高めた
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/version-2_12-dev/data/class/SC_Session.php

    r21420 r21441  
    4646    function SC_Session() { 
    4747        // セッション情報の保存 
    48         if(isset($_SESSION['cert'])) { 
     48        if (isset($_SESSION['cert'])) { 
    4949            $this->sid = session_id(); 
    5050            $this->cert = $_SESSION['cert']; 
     
    100100    function getUniqId() { 
    101101        // ユニークIDがセットされていない場合はセットする。 
    102         if( empty($_SESSION['uniqid']) ) { 
     102        if (empty($_SESSION['uniqid']) ) { 
    103103            $this->setUniqId(); 
    104104        } 
Note: See TracChangeset for help on using the changeset viewer.