diff options
author | Kelly Rauchenberger <fefferburbia@gmail.com> | 2008-08-04 14:32:20 +0000 |
---|---|---|
committer | Kelly Rauchenberger <fefferburbia@gmail.com> | 2008-08-04 14:32:20 +0000 |
commit | 67458a97c7425593a157436c4ac42c87703bc67e (patch) | |
tree | 66e8e11ffad2c7188b6627613ac93903bfef0211 | |
parent | e016b6868ec70f2cb3921c5e7b504ebf4a4c22e9 (diff) | |
download | instadisc-67458a97c7425593a157436c4ac42c87703bc67e.tar.gz instadisc-67458a97c7425593a157436c4ac42c87703bc67e.tar.bz2 instadisc-67458a97c7425593a157436c4ac42c87703bc67e.zip |
Update: Fixed extra + concatenation
This really should have happened in [59]. It's [37] all over again.
-rw-r--r-- | update/library/trunk/instadisc.php | 2 |
1 files changed, 1 insertions, 1 deletions
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) | |||
16 | 16 | ||
17 | $client = new xmlrpc_client($idusCentralServer); | 17 | $client = new xmlrpc_client($idusCentralServer); |
18 | $msg = new xmlrpcmsg("InstaDisc.sendFromUpdate", array( new xmlrpcval($idusUsername, 'string'), | 18 | $msg = new xmlrpcmsg("InstaDisc.sendFromUpdate", array( new xmlrpcval($idusUsername, 'string'), |
19 | new xmlrpcval(md5($idusUsername + ":" . md5($idusPassword) . ":" . $verID), 'string'), | 19 | new xmlrpcval(md5($idusUsername . ":" . md5($idusPassword) . ":" . $verID), 'string'), |
20 | new xmlrpcval($verID, 'int'), | 20 | new xmlrpcval($verID, 'int'), |
21 | new xmlrpcval($idusSubscriptionURI, 'string'), | 21 | new xmlrpcval($idusSubscriptionURI, 'string'), |
22 | new xmlrpcval($title, 'string'), | 22 | new xmlrpcval($title, 'string'), |