[Owp-cvs] owp/thirdparty/smarty smarty.patch,1.1,1.2
Status: Inactive
Brought to you by:
scader
From: <owp...@li...> - 2006-04-14 09:18:47
|
Update of /cvsroot/owp/owp/thirdparty/smarty In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv1460 Modified Files: smarty.patch 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.patch =================================================================== RCS file: /cvsroot/owp/owp/thirdparty/smarty/smarty.patch,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** smarty.patch 14 Apr 2006 01:57:39 -0000 1.1 --- smarty.patch 14 Apr 2006 09:18:44 -0000 1.2 *************** *** 2,16 **** =================================================================== RCS file: /cvsroot/owp/owp/thirdparty/smarty/libs/Smarty_Compiler.class.php,v ! retrieving revision 1.1.1.1 ! diff -r1.1.1.1 Smarty_Compiler.class.php 571a572,581 > 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; > --- 2,20 ---- =================================================================== RCS file: /cvsroot/owp/owp/thirdparty/smarty/libs/Smarty_Compiler.class.php,v ! retrieving revision 1.1 ! diff -r1.1 Smarty_Compiler.class.php ! 29c29 ! < /* $Id$ */ ! --- ! > /* $Id$ */ 571a572,581 > 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; > |