From 5e65a017fb4a41ebfaa9eb9e0eeb7d11167ca158 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lo=C3=AFc=20Chapeaux?= Date: Wed, 11 Jul 2001 19:21:30 +0000 Subject: [PATCH] Removed the '^M' at the end of some lines --- grab_globals.inc.php3 | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/grab_globals.inc.php3 b/grab_globals.inc.php3 index 2c471fa89..ddc50e821 100644 --- a/grab_globals.inc.php3 +++ b/grab_globals.inc.php3 @@ -7,17 +7,20 @@ * them */ if (!empty($HTTP_GET_VARS)) { - while(list($name, $value) = each($HTTP_GET_VARS)) - $$name = $value; + while(list($name, $value) = each($HTTP_GET_VARS)) { + $$name = $value; + } } if (!empty($HTTP_POST_VARS)) { - while(list($name, $value) = each($HTTP_POST_VARS)) + while(list($name, $value) = each($HTTP_POST_VARS)) { $$name = $value; + } } if (!empty($HTTP_POST_FILES)) { - while(list($name, $value) = each($HTTP_POST_FILES)) + while(list($name, $value) = each($HTTP_POST_FILES)) { $$name = $value['tmp_name']; + } } ?> \ No newline at end of file