cvs: smarty /libs Smarty_Compiler.class.php
"Messju Mohr" <[email protected]>
| Newsgroups | gmane.comp.php.cvs.smarty |
|---|---|
| Message-ID | <cvsmessju1056447577@cvsserver> |
messju Tue Jun 24 05:39:37 2003 EDT
Modified files:
/smarty/libs Smarty_Compiler.class.php
Log:
fixed $smarty.get-reference
Index: smarty/libs/Smarty_Compiler.class.php
diff -u smarty/libs/Smarty_Compiler.class.php:1.253 smarty/libs/Smarty_Compiler.class.php:1.254
--- smarty/libs/Smarty_Compiler.class.php:1.253 Tue Jun 24 05:27:27 2003
+++ smarty/libs/Smarty_Compiler.class.php Tue Jun 24 05:39:37 2003
@@ -39,7 +39,7 @@
* @package Smarty
*/
-/* $Id: Smarty_Compiler.class.php,v 1.253 2003/06/24 09:27:27 messju Exp $ */
+/* $Id: Smarty_Compiler.class.php,v 1.254 2003/06/24 09:39:37 messju Exp $ */
/**
* Template compiling class
* @package Smarty
@@ -1842,6 +1842,7 @@
case 'get':
$compiled_ref = ($this->request_use_auto_globals) ? '$_GET' : "\$GLOBALS['HTTP_GET_VARS']";
+ break;
case 'post':
$compiled_ref = ($this->request_use_auto_globals) ? '$_POST' : "\$GLOBALS['HTTP_POST_VARS']";
--
Smarty CVS Mailing List (http://cvs.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php