about summary refs log tree commit diff stats
path: root/update/plugin/wordpress
diff options
context:
space:
mode:
authorKelly Rauchenberger <fefferburbia@gmail.com>2008-08-06 12:50:16 +0000
committerKelly Rauchenberger <fefferburbia@gmail.com>2008-08-06 12:50:16 +0000
commit879c6062bc1d5e971fa7296ef154d4ad2b1b5ece (patch)
treefeb802038f7d38663e9bcc7b7aa9d4334cd0e6f7 /update/plugin/wordpress
parent63c6022b0ace5bc7d0d08ba73bf612ec75be6da6 (diff)
downloadinstadisc-879c6062bc1d5e971fa7296ef154d4ad2b1b5ece.tar.gz
instadisc-879c6062bc1d5e971fa7296ef154d4ad2b1b5ece.tar.bz2
instadisc-879c6062bc1d5e971fa7296ef154d4ad2b1b5ece.zip
Update: Fixed semantics in Wordpress plugin
See [90]
Diffstat (limited to 'update/plugin/wordpress')
-rw-r--r--update/plugin/wordpress/trunk/instadisc/instadisc.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/update/plugin/wordpress/trunk/instadisc/instadisc.php b/update/plugin/wordpress/trunk/instadisc/instadisc.php index 189f1a0..b8ed9d1 100644 --- a/update/plugin/wordpress/trunk/instadisc/instadisc.php +++ b/update/plugin/wordpress/trunk/instadisc/instadisc.php
@@ -156,7 +156,7 @@ function sendPost($id)
156 new xmlrpcval($title, 'string'), 156 new xmlrpcval($title, 'string'),
157 new xmlrpcval($authorName, 'string'), 157 new xmlrpcval($authorName, 'string'),
158 new xmlrpcval($url, 'string'), 158 new xmlrpcval($url, 'string'),
159 new xmlrpcval(array(), 'array'))); 159 new xmlrpcval(serialize(array()), 'string')));
160 $client->send($msg); 160 $client->send($msg);
161} 161}
162 162
@@ -180,7 +180,7 @@ function sendComment($id)
180 new xmlrpcval($title, 'string'), 180 new xmlrpcval($title, 'string'),
181 new xmlrpcval($author, 'string'), 181 new xmlrpcval($author, 'string'),
182 new xmlrpcval($url, 'string'), 182 new xmlrpcval($url, 'string'),
183 new xmlrpcval(array(), 'array'))); 183 new xmlrpcval(serialize(array()), 'string')));
184 $client->send($msg); 184 $client->send($msg);
185} 185}
186 186