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

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

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

Legend:

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

    r20764 r21481  
    2929// hash_algos (PHP 5 >= 5.1.2, PECL hash >= 1.1) 
    3030// パスワード・リマインダーのハッシュ暗号化に利用 
    31 // XXX PHP_Compat::loadFunction("hash_algos"); // include_once のパス相違 
     31// XXX PHP_Compat::loadFunction('hash_algos'); // include_once のパス相違 
    3232if (!function_exists('hash_algos')) { 
    3333    require_once DATA_REALDIR . 'module/Compat/Compat/Function/hash_algos.php'; 
     
    3636// パスワード・リマインダーのハッシュ暗号化に利用 
    3737// http://pear.php.net/bugs/bug.php?id=16521 よりPHP_Compat互換仕様のhash関連関数追加 
    38 // XXX PHP_Compat::loadFunction("hash_hmac"); // include_once のパス相違 
     38// XXX PHP_Compat::loadFunction('hash_hmac'); // include_once のパス相違 
    3939if (!function_exists('hash_hmac')) { 
    4040    require_once DATA_REALDIR . 'module/Compat/Compat/Function/hash_hmac.php'; 
Note: See TracChangeset for help on using the changeset viewer.