From 67458a97c7425593a157436c4ac42c87703bc67e Mon Sep 17 00:00:00 2001 From: Kelly Rauchenberger Date: Mon, 4 Aug 2008 14:32:20 +0000 Subject: Update: Fixed extra + concatenation This really should have happened in [59]. It's [37] all over again. --- update/library/trunk/instadisc.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/update/library/trunk/instadisc.php b/update/library/trunk/instadisc.php index e36bad8..1b30477 100644 --- a/update/library/trunk/instadisc.php +++ b/update/library/trunk/instadisc.php @@ -16,7 +16,7 @@ function instaDisc_sendItem($title, $author, $url, $semantics) $client = new xmlrpc_client($idusCentralServer); $msg = new xmlrpcmsg("InstaDisc.sendFromUpdate", array( new xmlrpcval($idusUsername, 'string'), - new xmlrpcval(md5($idusUsername + ":" . md5($idusPassword) . ":" . $verID), 'string'), + new xmlrpcval(md5($idusUsername . ":" . md5($idusPassword) . ":" . $verID), 'string'), new xmlrpcval($verID, 'int'), new xmlrpcval($idusSubscriptionURI, 'string'), new xmlrpcval($title, 'string'), -- cgit 1.4.1