]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
Ticket #2649: fix for undefined $base_url in lighttpd code path
authorBrion Vibber <brion@pobox.com>
Tue, 4 Jan 2011 20:04:11 +0000 (12:04 -0800)
committerBrion Vibber <brion@pobox.com>
Tue, 4 Jan 2011 20:07:52 +0000 (12:07 -0800)
The $base_url var is never defined, and the code has actually always been wrong since it was added.
Just removing it seems to work fine :)

index.php

index 9501e2275da6d610b9263bcb5a9e911e721d64de..b2cf2d4a9d8eddf2214ec247147fe55a13abd180 100644 (file)
--- a/index.php
+++ b/index.php
@@ -204,7 +204,7 @@ function main()
 {
     // fake HTTP redirects using lighttpd's 404 redirects
     if (strpos($_SERVER['SERVER_SOFTWARE'], 'lighttpd') !== false) {
-        $_lighty_url = $base_url.$_SERVER['REQUEST_URI'];
+        $_lighty_url = $_SERVER['REQUEST_URI'];
         $_lighty_url = @parse_url($_lighty_url);
 
         if ($_lighty_url['path'] != '/index.php' && $_lighty_url['path'] != '/') {