about summary refs log tree commit diff stats
path: root/update/library/trunk/instadisc.php
diff options
context:
space:
mode:
authorKelly Rauchenberger <fefferburbia@gmail.com>2008-08-06 12:49:19 +0000
committerKelly Rauchenberger <fefferburbia@gmail.com>2008-08-06 12:49:19 +0000
commit63c6022b0ace5bc7d0d08ba73bf612ec75be6da6 (patch)
treea5c415ee229af138d7d07376ead2df1852336ea3 /update/library/trunk/instadisc.php
parentd000f93b1c6b930874f3b02d04c3965b54e784d5 (diff)
downloadinstadisc-63c6022b0ace5bc7d0d08ba73bf612ec75be6da6.tar.gz
instadisc-63c6022b0ace5bc7d0d08ba73bf612ec75be6da6.tar.bz2
instadisc-63c6022b0ace5bc7d0d08ba73bf612ec75be6da6.zip
Update: Fixed semantics in Library
See [90]
Diffstat (limited to 'update/library/trunk/instadisc.php')
-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 1b30477..3bef5e4 100644 --- a/update/library/trunk/instadisc.php +++ b/update/library/trunk/instadisc.php
@@ -22,7 +22,7 @@ function instaDisc_sendItem($title, $author, $url, $semantics)
22 new xmlrpcval($title, 'string'), 22 new xmlrpcval($title, 'string'),
23 new xmlrpcval($author, 'string'), 23 new xmlrpcval($author, 'string'),
24 new xmlrpcval($url, 'string'), 24 new xmlrpcval($url, 'string'),
25 new xmlrpcval($semantics, 'array'))); 25 new xmlrpcval(serialize($semantics), 'string')));
26 $client->send($msg); 26 $client->send($msg);
27} 27}
28 28