From 120ed87e72b26f6f60fe113338dbacfa27f6c019 Mon Sep 17 00:00:00 2001
From: Evan Prodromou <evan@controlyourself.ca>
Date: Fri, 23 Jan 2009 01:39:25 +0100
Subject: [PATCH] Fix start/stop xml in xrds

---
 actions/xrds.php | 14 +++++++-------
 1 file changed, 7 insertions(+), 7 deletions(-)

diff --git a/actions/xrds.php b/actions/xrds.php
index 629de3a863..0758318037 100644
--- a/actions/xrds.php
+++ b/actions/xrds.php
@@ -49,17 +49,17 @@ class XrdsAction extends Action
 {
     /**
      * Is read only?
-     * 
+     *
      * @return boolean true
      */
     function isReadOnly()
-    {                
+    {
         return true;
     }
 
     /**
      * Class handler.
-     * 
+     *
      * @param array $args query arguments
      *
      * @return void
@@ -78,7 +78,7 @@ class XrdsAction extends Action
 
     /**
      * Show XRDS for a user.
-     * 
+     *
      * @param class $user XRDS for this user.
      *
      * @return void
@@ -86,7 +86,7 @@ class XrdsAction extends Action
     function showXrds($user)
     {
         header('Content-Type: application/xrds+xml');
-        common_start_xml();
+        $this->startXML();
         $this->elementStart('XRDS', array('xmlns' => 'xri://$xrds'));
 
         $this->elementStart('XRD', array('xmlns' => 'xri://$xrd*($v*2.0)',
@@ -133,12 +133,12 @@ class XrdsAction extends Action
                             '#omb');
         $this->elementEnd('XRD');
         $this->elementEnd('XRDS');
-        common_end_xml();
+        $this->endXML();
     }
 
     /**
      * Show service.
-     * 
+     *
      * @param string $type    XRDS type
      * @param string $uri     URI
      * @param array  $params  type parameters, null by default
-- 
2.39.5