Ignore:
Timestamp:
2014/04/18 01:56:55 (10 years ago)
Author:
nanasess
Message:

fixes #2505 (Windows 版 PHP5.3.28 以降で画面が真っ白になる)

  • パスを正規化するように修正
  • Smarty 内部では DIRECTORY_SEPARATOR が使用されるため, realpath() 関数を使用する
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/version-2_13-dev/data/class/SC_InstallView.php

    r23124 r23370  
    2828        parent::__construct(); 
    2929 
    30         $this->_smarty->template_dir = $template_dir; 
    31         $this->_smarty->compile_dir = $compile_dir; 
     30        $this->_smarty->template_dir = realpath($template_dir); 
     31        $this->_smarty->compile_dir = realpath($compile_dir); 
    3232    } 
    3333} 
Note: See TracChangeset for help on using the changeset viewer.