Changeset 21760


Ignore:
Timestamp:
2012/04/17 20:20:04 (12 years ago)
Author:
shutta
Message:

#1762 SV_Viewの第1引数は不使用のため削除

Location:
branches/version-2_12-dev/data/class
Files:
3 edited

Legend:

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

    r21514 r21760  
    2424class SC_AdminView extends SC_View_Ex { 
    2525    function SC_AdminView() { 
    26         parent::SC_View(false); 
     26        parent::SC_View(); 
    2727        $this->_smarty->template_dir = TEMPLATE_ADMIN_REALDIR; 
    2828        $this->_smarty->compile_dir = COMPILE_ADMIN_REALDIR; 
  • branches/version-2_12-dev/data/class/SC_InstallView.php

    r21420 r21760  
    2424class SC_InstallView extends SC_View_Ex { 
    2525    function SC_InstallView($template_dir, $compile_dir = COMPILE_REALDIR) { 
    26         parent::SC_View(false); 
     26        parent::SC_View(); 
    2727        $this->_smarty->template_dir = $template_dir; 
    2828        $this->_smarty->compile_dir = $compile_dir; 
  • branches/version-2_12-dev/data/class/SC_View.php

    r21597 r21760  
    3131 
    3232    // コンストラクタ 
    33     function SC_View($siteinfo = true) { 
     33    function SC_View() { 
    3434 
    3535        $this->_smarty = new Smarty; 
Note: See TracChangeset for help on using the changeset viewer.