Changeset 14506


Ignore:
Timestamp:
2007/06/08 10:56:52 (17 years ago)
Author:
naka
Message:
 
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/dev/data/class/SC_View.php

    r14489 r14506  
    99require_once($SC_VIEW_PHP_DIR . "/../module/Smarty/libs/Smarty.class.php"); 
    1010require_once($SC_VIEW_PHP_DIR . "/../include/php_ini.inc"); 
     11 
     12 
     13function modifiers_test($val) { 
     14    return "-".$val."-"; 
     15} 
    1116 
    1217class SC_View { 
     
    4449        $this->_smarty->register_function("sfPrintEbisTag","sfPrintEbisTag"); 
    4550        $this->_smarty->register_function("sfPrintAffTag","sfPrintAffTag"); 
    46         $this->_smarty->default_modifiers = array('script_escape'); 
     51        //$this->_smarty->default_modifiers = array('script_escape'); 
     52        $this->_smarty->default_modifiers = array('modifiers_test'); 
    4753         
    4854        sfPrintR($this->_smarty->default_modifiers); 
Note: See TracChangeset for help on using the changeset viewer.