[pLog-svn] r1064 - plog/trunk/class/net

oscar at devel.plogworld.net oscar at devel.plogworld.net
Sun Feb 13 21:18:26 GMT 2005


Author: oscar
Date: 2005-02-13 21:18:26 +0000 (Sun, 13 Feb 2005)
New Revision: 1064

Modified:
   plog/trunk/class/net/baserequestgenerator.class.php
Log:
script_name wasn't being taken into account so all links were pointing to index.php even if script_name was something else.

Modified: plog/trunk/class/net/baserequestgenerator.class.php
===================================================================
--- plog/trunk/class/net/baserequestgenerator.class.php	2005-02-13 16:32:44 UTC (rev 1063)
+++ plog/trunk/class/net/baserequestgenerator.class.php	2005-02-13 21:18:26 UTC (rev 1064)
@@ -89,7 +89,7 @@
         function getIndexUrl( $useSubdomains = true )
         {
 			
-            $url = $this->getBaseUrl( $useSubdomains )."/index.php";
+            $url = $this->getBaseUrl( $useSubdomains )."/".$this->getScriptName();
 
             return $url;
         }




More information about the pLog-svn mailing list