summaryrefslogtreecommitdiffstats
path: root/php/Attic/examples/sample-idp/logout.php
diff options
context:
space:
mode:
authorChristophe Nowicki <cnowicki@easter-eggs.com>2004-09-10 15:35:06 +0000
committerChristophe Nowicki <cnowicki@easter-eggs.com>2004-09-10 15:35:06 +0000
commit19663b8864a6656f9baca0120276ff7607e1fedf (patch)
tree4430b917de9ca0cd5c21fda599f4be47aaff0ef0 /php/Attic/examples/sample-idp/logout.php
parent0abfa7d0c8bac90e291cf7664a0302aa286f716d (diff)
change header("Location $url\n\n") to header("Location $url\r\n\r\n")
Diffstat (limited to 'php/Attic/examples/sample-idp/logout.php')
-rw-r--r--php/Attic/examples/sample-idp/logout.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/php/Attic/examples/sample-idp/logout.php b/php/Attic/examples/sample-idp/logout.php
index 83c23a33..2114757f 100644
--- a/php/Attic/examples/sample-idp/logout.php
+++ b/php/Attic/examples/sample-idp/logout.php
@@ -32,6 +32,6 @@
$url = "index.php";
header("Request-URI: $url");
header("Content-Location: $url");
- header("Location: $url\n\n");
+ header("Location: $url\r\n\r\n");
exit;
?>