[Owp-cvs] owp/thirdparty/smarty/libs Smarty_Compiler.class.php,1.1.1.1,1.2
Status: Inactive
Brought to you by:
scader
From: <owp...@li...> - 2006-04-14 01:57:42
|
Update of /cvsroot/owp/owp/thirdparty/smarty/libs In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv32314/libs Modified Files: Smarty_Compiler.class.php Log Message: Changed the Smarty source, a diff with name smarty.patch was also done, you can reject my changes to Smarty with patch -R <smarty.patch Index: Smarty_Compiler.class.php =================================================================== RCS file: /cvsroot/owp/owp/thirdparty/smarty/libs/Smarty_Compiler.class.php,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** Smarty_Compiler.class.php 13 Apr 2006 01:18:16 -0000 1.1.1.1 --- Smarty_Compiler.class.php 14 Apr 2006 01:57:39 -0000 1.2 *************** *** 570,573 **** --- 570,583 ---- return $this->_compile_insert_tag($tag_args); + case 'owp': + include_once 'owp.inc'; + process_owp(true,$tag_args,$this); + break; + + case '/owp': + include_once 'owp.inc'; + process_owp(false,$tag_args,$this); + break; + default: if ($this->_compile_compiler_tag($tag_command, $tag_args, $output)) { |