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

jondaley at devel.lifetype.net jondaley at devel.lifetype.net
Thu Apr 20 14:11:03 GMT 2006


Author: jondaley
Date: 2006-04-20 14:11:02 +0000 (Thu, 20 Apr 2006)
New Revision: 3267

Modified:
   plog/trunk/class/net/rawrequestgenerator.class.php
Log:
always show blogId in RSS links.  Fixes: http://forums.lifetype.net/viewtopic.php?t=4444 where if you use subdomains, plain URLs and don't include the blogId, RSS feeds are broken.  Why didn't anyone see this before??  Oscar - can you take a look through the rawrequestgenerator, and see if there are any other getRequest() calls that should also always have the blogId, I am not sure

Modified: plog/trunk/class/net/rawrequestgenerator.class.php
===================================================================
--- plog/trunk/class/net/rawrequestgenerator.class.php	2006-04-20 09:31:14 UTC (rev 3266)
+++ plog/trunk/class/net/rawrequestgenerator.class.php	2006-04-20 14:11:02 UTC (rev 3267)
@@ -215,7 +215,7 @@
             if( $profile != "" )
             	$this->addParameter( "profile", $profile );
 
-            $rssLink = $this->getRssUrl().$this->getRequest();
+            $rssLink = $this->getRssUrl().$this->getRequest(false);
 
             return $rssLink;
         }



More information about the pLog-svn mailing list