JasonWoof Got questions, comments, patches, etc.? Contact Jason Woofenden
CHANGED db.php API so it doesn't append WHERE for you
[wfpl.git] / http.php
index 437ec74..b183275 100644 (file)
--- a/http.php
+++ b/http.php
@@ -48,7 +48,7 @@ function this_url() {
 }
 
 function redirect($url, $status = '302 Moved Temporarily', $message = '') {
-       header("HTTP/1.1 $status");
+       header("HTTP/1.0 $status");
        header("Location: $url");
        echo($message);
        exit();