diff options
author | Kelly Rauchenberger <fefferburbia@gmail.com> | 2008-08-06 12:50:16 +0000 |
---|---|---|
committer | Kelly Rauchenberger <fefferburbia@gmail.com> | 2008-08-06 12:50:16 +0000 |
commit | 879c6062bc1d5e971fa7296ef154d4ad2b1b5ece (patch) | |
tree | feb802038f7d38663e9bcc7b7aa9d4334cd0e6f7 /update/plugin/wordpress/trunk | |
parent | 63c6022b0ace5bc7d0d08ba73bf612ec75be6da6 (diff) | |
download | instadisc-879c6062bc1d5e971fa7296ef154d4ad2b1b5ece.tar.gz instadisc-879c6062bc1d5e971fa7296ef154d4ad2b1b5ece.tar.bz2 instadisc-879c6062bc1d5e971fa7296ef154d4ad2b1b5ece.zip |
Update: Fixed semantics in Wordpress plugin
See [90]
Diffstat (limited to 'update/plugin/wordpress/trunk')
-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 | ||