diff options
Diffstat (limited to 'update/plugin/wordpress')
-rw-r--r-- | update/plugin/wordpress/trunk/instadisc/instadisc.php | 4 |
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 | ||