]> git.mxchange.org Git - quix0rs-gnu-social.git/blobdiff - actions/publicxrds.php
fix calls to show_rss_timeline
[quix0rs-gnu-social.git] / actions / publicxrds.php
index c41c3b2a84be502815dbc9519e0a05d5cf762ae9..951434c8783015f114079d75fd038cfd85e75522 100644 (file)
@@ -25,15 +25,19 @@ require_once(INSTALLDIR.'/lib/openid.php');
 
 class PublicxrdsAction extends Action {
 
+       function is_readonly() {
+               return true;
+       }
+
        function handle($args) {
-               
+
                parent::handle($args);
-               
+
                header('Content-Type: application/xrds+xml');
 
                common_start_xml();
                common_element_start('XRDS', array('xmlns' => 'xri://$xrds'));
-               
+
                common_element_start('XRD', array('xmlns' => 'xri://$xrd*($v*2.0)',
                                                                                  'xmlns:simple' => 'http://xrds-simple.net/core/1.0',
                                                                                  'version' => '2.0'));
@@ -44,13 +48,13 @@ class PublicxrdsAction extends Action {
                        $this->show_service(Auth_OpenID_RP_RETURN_TO_URL_TYPE,
                                                                common_local_url($finish));
                }
-               
+
                common_element_end('XRD');
-               
+
                common_element_end('XRDS');
                common_end_xml();
        }
-       
+
        function show_service($type, $uri, $params=NULL, $sigs=NULL, $localId=NULL) {
                common_element_start('Service');
                if ($uri) {