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

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

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

Legend:

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

    r21439 r21441  
    100100    function lfMobileConvertInputValue(&$value) { 
    101101        if (is_array($value)) { 
    102             foreach($value as $key => $val ){ 
     102            foreach ($value as $key => $val ) { 
    103103                $this->lfMobileConvertInputValue($value[$key]); 
    104104            } 
     
    467467        $file_extension = strtolower(substr(strrchr($filename,"."),1)); 
    468468        $mime_type = $this->defaultMimeType; 
    469         if(array_key_exists($file_extension, $this->arrMimetypes)){ 
     469        if (array_key_exists($file_extension, $this->arrMimetypes)) { 
    470470            $mime_type = $this->arrMimetypes[$file_extension]; 
    471471        } 
Note: See TracChangeset for help on using the changeset viewer.