about summary refs log tree commit diff stats
path: root/update/library
diff options
context:
space:
mode:
authorKelly Rauchenberger <fefferburbia@gmail.com>2008-08-04 14:32:20 +0000
committerKelly Rauchenberger <fefferburbia@gmail.com>2008-08-04 14:32:20 +0000
commit67458a97c7425593a157436c4ac42c87703bc67e (patch)
tree66e8e11ffad2c7188b6627613ac93903bfef0211 /update/library
parente016b6868ec70f2cb3921c5e7b504ebf4a4c22e9 (diff)
downloadinstadisc-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.
Diffstat (limited to 'update/library')
-rw-r--r--update/library/trunk/instadisc.php2
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'),