[pLog-svn] r6846 - plog/branches/lifetype-1.2/class/net/xmlrpc

pwestbro at devel.lifetype.net pwestbro at devel.lifetype.net
Fri Mar 27 13:48:55 EDT 2009


Author: pwestbro
Date: 2009-03-27 13:48:54 -0400 (Fri, 27 Mar 2009)
New Revision: 6846

Modified:
   plog/branches/lifetype-1.2/class/net/xmlrpc/xmlrpcserver.class.php
Log:
While trying to fix the problem where categories are not appearing in the
BlogWriter Light iPhone application, I noticed that the category rss url is
not being filled in.


Modified: plog/branches/lifetype-1.2/class/net/xmlrpc/xmlrpcserver.class.php
===================================================================
--- plog/branches/lifetype-1.2/class/net/xmlrpc/xmlrpcserver.class.php	2009-03-23 23:05:23 UTC (rev 6845)
+++ plog/branches/lifetype-1.2/class/net/xmlrpc/xmlrpcserver.class.php	2009-03-27 17:48:54 UTC (rev 6846)
@@ -408,12 +408,12 @@
                 $dummy                   = array();
                 $dummy["description"]    = $cat->getDescription();
                 
-	                // disable the generation of xhtml content or else the IXR_XMLRPC library will
-	                // escape things twice!
+	        // disable the generation of xhtml content or else the IXR_XMLRPC library will
+	        // escape things twice!
                 $url->setXHTML( false );
                 
                 $dummy["htmlUrl"]        = $url->categoryLink( $cat );
-                $dummy["rssUrl"]         = "http://";
+                $dummy["rssUrl"]         = $url->categoryRssLink( $cat, "", $blogInfo );
                 $ret[$cat->getName()]    = $dummy;
             }
             



More information about the pLog-svn mailing list