Minor followup to r75621, add whitespace
authorSam Reed <reedy@users.mediawiki.org>
Thu, 28 Oct 2010 22:56:43 +0000 (22:56 +0000)
committerSam Reed <reedy@users.mediawiki.org>
Thu, 28 Oct 2010 22:56:43 +0000 (22:56 +0000)
Add getVersion to ApiFormatXmlRsd

includes/api/ApiRsd.php

index 2c81e97..552de59 100644 (file)
@@ -166,6 +166,7 @@ class ApiRsd extends ApiBase {
                }
                return $outputData;
        }
+
        public function getVersion() {
                return __CLASS__ . ': $Id$';
        }
@@ -180,4 +181,8 @@ class ApiFormatXmlRsd extends ApiFormatXml {
        public function getMimeType() {
                return 'application/rsd+xml';
        }
+
+       public function getVersion() {
+               return __CLASS__ . ': $Id$';
+       }
 }