]> git.mxchange.org Git - quix0rs-gnu-social.git/blobdiff - actions/apignusocialversion.php
Merge branch 'master' into mmn_fixes
[quix0rs-gnu-social.git] / actions / apignusocialversion.php
index 88fb5c51a62c2521c57414b6f17fdf3701ed5508..a56630c666f5d33e6531f66e4f3c7cabe8fba0b7 100644 (file)
@@ -52,12 +52,12 @@ class ApiGNUsocialVersionAction extends ApiPrivateAuthAction
         switch ($this->format) {
         case 'xml':
             $this->initDocument('xml');
-            $this->element('version', null, STATUSNET_VERSION);
+            $this->element('version', null, GNUSOCIAL_VERSION);
             $this->endDocument('xml');
             break;
         case 'json':
             $this->initDocument('json');
-            print '"'.STATUSNET_VERSION.'"';
+            print '"'.GNUSOCIAL_VERSION.'"';
             $this->endDocument('json');
             break;
         default: