Update of /cvsroot/php-blog/serendipity
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv5633
Modified Files:
Tag: branch_0_6
NEWS serendipity_admin_installer.inc.php
Log Message:
MFH: Tom's bugfix
Index: serendipity_admin_installer.inc.php
===================================================================
RCS file: /cvsroot/php-blog/serendipity/serendipity_admin_installer.inc.php,v
retrieving revision 1.59.4.5
retrieving revision 1.59.4.6
diff -u -d -r1.59.4.5 -r1.59.4.6
--- serendipity_admin_installer.inc.php 24 May 2004 10:38:00 -0000 1.59.4.5
+++ serendipity_admin_installer.inc.php 14 Jun 2004 10:34:57 -0000 1.59.4.6
@@ -173,7 +173,7 @@
$response = '';
if ($sock) {
- fputs($sock, "GET {$_SERVER['REQUEST_URI']}nonexistant HTTP/1.0\n");
+ fputs($sock, "GET {$_SERVER['PHP_SELF']}nonexistant HTTP/1.0\n");
fputs($sock, "Host: $serendipity_host\n");
fputs($sock, "Connection: close\n\n");
Index: NEWS
===================================================================
RCS file: /cvsroot/php-blog/serendipity/NEWS,v
retrieving revision 1.103.4.6
retrieving revision 1.103.4.7
diff -u -d -r1.103.4.6 -r1.103.4.7
--- NEWS 24 May 2004 10:41:56 -0000 1.103.4.6
+++ NEWS 14 Jun 2004 10:34:57 -0000 1.103.4.7
@@ -1,6 +1,12 @@
# $Id$
-Version 0.6-pl2 (May 24th, 2004)
+Version 0.6-pl3 (June 14th, 2004)
+------------------------------------------------------------------------
+
+ * Fix bug during installation, which can cause an endless loop
+ of connections (tomsommer)
+
+ Version 0.6-pl2 (May 24th, 2004)
------------------------------------------------------------------------
* Fixed security vulnerability on servers with Register_Globals On.
|