Ignore:
Timestamp:
2011/01/07 11:39:26 (13 years ago)
Author:
fukuda
Message:

#839(arg_separator.outputが"&"以外のとき無限ループする)に対応

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/version-2_5-dev/data/class/SC_Initial.php

    r19825 r19850  
    5757        $this->defineErrorType(); 
    5858        $this->defineConstants(); 
    59         $this->mbstringInit(); 
     59        $this->phpconfigInit(); 
    6060        $this->createCacheDir(); 
    6161        $this->stripslashesDeepGpc(); 
     
    133133     * @return void 
    134134     */ 
    135     function mbstringInit() { 
     135    function phpconfigInit() { 
    136136        ini_set("mbstring.http_input", CHAR_CODE); 
    137137        ini_set("mbstring.http_output", CHAR_CODE); 
     
    150150        // TODO .htaccess の mbstring.internal_encoding を削除できないか検討 
    151151 
     152        ini_set("arg_separator.output","&"); 
     153         
    152154        //ロケールを明示的に設定 
    153155        setlocale(LC_ALL, LOCALE); 
Note: See TracChangeset for help on using the changeset viewer.