From 4e81cc42d864e5dcfee71b18a03514a0ff1a88a8 Mon Sep 17 00:00:00 2001 From: messju Date: Tue, 24 Jun 2003 09:39:37 +0000 Subject: [PATCH] fixed $smarty.get-reference --- libs/Smarty_Compiler.class.php | 1 + 1 file changed, 1 insertion(+) diff --git a/libs/Smarty_Compiler.class.php b/libs/Smarty_Compiler.class.php index a9001b94..96b87506 100644 --- a/libs/Smarty_Compiler.class.php +++ b/libs/Smarty_Compiler.class.php @@ -1842,6 +1842,7 @@ class Smarty_Compiler extends Smarty { 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']";