Update of /cvsroot/owp/owp/thirdparty/smarty/libs
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv1460/libs
Modified Files:
Smarty_Compiler.class.php
Log Message:
Changed the Smarty source, a diff with name smarty.patch was also done, you can rollback 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
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** Smarty_Compiler.class.php 13 Apr 2006 01:18:16 -0000 1.1
--- Smarty_Compiler.class.php 14 Apr 2006 09:18:44 -0000 1.2
***************
*** 570,573 ****
--- 570,583 ----
return $this->_compile_insert_tag($tag_args);
+ case 'owp':
+ include_once 'owp.inc';
+ return process_owp(true,$tag_args,$this);
+ break;
+
+ case '/owp':
+ include_once 'owp.inc';
+ return process_owp(false,$tag_args,$this);
+ break;
+
default:
if ($this->_compile_compiler_tag($tag_command, $tag_args, $output)) {
|