Removed the '^M' at the end of some lines

This commit is contained in:
Loïc Chapeaux
2001-07-11 19:21:30 +00:00
parent dd4cf1c960
commit 5e65a017fb

View File

@@ -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'];
}
}
?>