From a3c0ae7ca2b5293b3fe596d3ec6e427353d4ae82 Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Mon, 22 May 2006 12:26:58 +0100 Subject: [PATCH] add getVersion() xml-rpc method --- xml-rpc.php | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/xml-rpc.php b/xml-rpc.php index 69c5f3689..113f3b764 100644 --- a/xml-rpc.php +++ b/xml-rpc.php @@ -23,6 +23,10 @@ pg_query("set client_encoding = 'utf-8'"); } + function getVersion() { + return new xmlrpcval(VERSION); + } + function getSubscribedFeeds($msg) { global $link; @@ -358,8 +362,12 @@ $setArticleUnread_sig = array(array($xmlrpcString, $xmlrpcString, $xmlrpcString, $xmlrpcInt, $xmlrpcInt)); + $getVersion_sig = array(array($xmlrpcString)); + $s = new xmlrpc_server( array( + "rss.getVersion" => array("function" => "getVersion", + "signature" => $getVersion_sig), "rss.setArticleRead" => array("function" => "setArticleRead", "signature" => $setArticleRead_sig), "rss.setArticleMarked" => array("function" => "setArticleMarked",