From 48a8c24fa59e391a318847b368d51408d147dd29 Mon Sep 17 00:00:00 2001 From: rub Date: Thu, 13 Apr 2006 22:28:26 +0000 Subject: Issue ID 330: o Remove Apache functions o Show redirect message on 2 lines Report of svn:1160 git-svn-id: http://piwigo.org/svn/branches/branch-1_6@1161 68402e56-0260-453c-a942-63ccdbb3a9ee --- include/functions.inc.php | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) (limited to 'include') diff --git a/include/functions.inc.php b/include/functions.inc.php index 2b53b5c26..2fb4e3cba 100644 --- a/include/functions.inc.php +++ b/include/functions.inc.php @@ -536,6 +536,7 @@ function redirect( $url , $msg = '', $refreh_time = 0) { $redirect_msg = $msg; } + $redirect_msg = nl2br($redirect_msg); $refresh = $refreh_time; $url_link = $url; $title = 'redirection'; @@ -920,14 +921,14 @@ function re_post_http($url_redirect, $redirect_message, $redirect_refreh_time) $message_post = "POST ".$_SERVER['PHP_SELF'].html_entity_decode(get_query_string_diff(array()))." HTTP/1.1\r\n"; - foreach (array_flip(array_diff(array_flip(apache_request_headers()), array('Content-Type', 'Content-Length'))) as $header_name => $header_value) +/* foreach (array_flip(array_diff(array_flip(apache_request_headers()), array('Content-Type', 'Content-Length'))) as $header_name => $header_value) { $message_post .= $header_name.": ".$header_value."\r\n"; - } + }*/ + $message_post .= "Host: ".$_SERVER['HTTP_HOST']."\r\n"; + $message_post .= "Cookie: ".$conf['session_name']."=".$_COOKIE[$conf['session_name']]."\r\n"; -// $message_post .= "Host: ".$_SERVER['HTTP_HOST']."\r\n"; -// $message_post .= "Cookie: ".$conf['session_name']."=".$_COOKIE[$conf['session_name']]."\r\n"; $message_post .= "Content-Type: application/x-www-form-urlencoded\r\n"; $message_post .= "Content-Length: ".strlen($data_post)."\r\n"; $message_post .= "\r\n"; -- cgit v1.2.3