Ignore:
Timestamp:
2011/01/01 19:39:17 (13 years ago)
Author:
Seasoft
Message:

#834(パラメータの定数名に「URL」を含むにもかかわらず、パスのみのものがある)

File:
1 edited

Legend:

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

    r19805 r19807  
    211211        parent::SC_View(); 
    212212 
    213         $this->_smarty->template_dir = TEMPLATE_DIR; 
     213        $this->_smarty->template_dir = TEMPLATE_REALDIR; 
    214214        $this->_smarty->compile_dir = COMPILE_DIR; 
    215215 
     
    243243    function SC_MobileView($setPrevURL = true) { 
    244244        parent::SC_SiteView($setPrevURL); 
    245         $this->_smarty->template_dir = MOBILE_TEMPLATE_DIR; 
     245        $this->_smarty->template_dir = MOBILE_TEMPLATE_REALDIR; 
    246246        $this->_smarty->compile_dir = MOBILE_COMPILE_REALDIR; 
    247247        $this->assignTemplatePath(DEVICE_TYPE_MOBILE); 
     
    252252    function SC_SmartphoneView($setPrevURL = true) { 
    253253        parent::SC_SiteView($setPrevURL); 
    254         $this->_smarty->template_dir = SMARTPHONE_TEMPLATE_DIR; 
     254        $this->_smarty->template_dir = SMARTPHONE_TEMPLATE_REALDIR; 
    255255        $this->_smarty->compile_dir = SMARTPHONE_COMPILE_REALDIR; 
    256256        $this->assignTemplatePath(DEVICE_TYPE_SMARTPHONE); 
Note: See TracChangeset for help on using the changeset viewer.