|
From: Paul S. O. <ps...@us...> - 2001-12-02 23:54:28
|
Update of /cvsroot/phpbb/phpBB2
In directory usw-pr-cvs1:/tmp/cvs-serv12735
Modified Files:
posting.php install.php
Log Message:
Removed 'Redirect' header
Index: posting.php
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/posting.php,v
retrieving revision 1.116
retrieving revision 1.117
diff -C2 -r1.116 -r1.117
*** posting.php 2001/11/29 12:46:16 1.116
--- posting.php 2001/12/02 23:54:25 1.117
***************
*** 662,666 ****
$post_append = "";
}
- header("HTTP/1.0 302 Redirect");
header("Location:" . append_sid($redirect) . $post_append, true);
}
--- 662,665 ----
***************
*** 987,991 ****
}
- header("HTTP/1.0 302 Redirect");
header("Location: " . append_sid("login.$phpEx?redirect=posting.$phpEx&" . $redirect, true));
--- 986,989 ----
***************
*** 1825,1829 ****
else
{
- header("HTTP/1.0 302 Redirect");
header("Location: " . append_sid("viewtopic.$phpEx?" . POST_TOPIC_URL . "=$topic_id", true));
}
--- 1823,1826 ----
Index: install.php
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/install.php,v
retrieving revision 1.17
retrieving revision 1.18
diff -C2 -r1.17 -r1.18
*** install.php 2001/11/30 23:15:53 1.17
--- install.php 2001/12/02 23:54:25 1.18
***************
*** 326,330 ****
else
{
- header("HTTP/1.0 302 Redirect");
header("Location: " . append_sid("index.$phpEx", true));
}
--- 326,329 ----
|