Index: branches/dev/data/class/SC_View.php
===================================================================
--- branches/dev/data/class/SC_View.php	(revision 14489)
+++ branches/dev/data/class/SC_View.php	(revision 14506)
@@ -9,4 +9,9 @@
 require_once($SC_VIEW_PHP_DIR . "/../module/Smarty/libs/Smarty.class.php");
 require_once($SC_VIEW_PHP_DIR . "/../include/php_ini.inc");
+
+
+function modifiers_test($val) {
+    return "-".$val."-";
+}
 
 class SC_View {
@@ -44,5 +49,6 @@
 		$this->_smarty->register_function("sfPrintEbisTag","sfPrintEbisTag");
 		$this->_smarty->register_function("sfPrintAffTag","sfPrintAffTag");
-		$this->_smarty->default_modifiers = array('script_escape');
+		//$this->_smarty->default_modifiers = array('script_escape');
+        $this->_smarty->default_modifiers = array('modifiers_test');
         
         sfPrintR($this->_smarty->default_modifiers);
