diff options
author | Kelly Rauchenberger <fefferburbia@gmail.com> | 2008-08-06 13:39:33 +0000 |
---|---|---|
committer | Kelly Rauchenberger <fefferburbia@gmail.com> | 2008-08-06 13:39:33 +0000 |
commit | b183ebe5aa8da9f77cd412bee077f598182b767d (patch) | |
tree | ddc9bd9afbabe341b47debadd36184fe8ae4fa60 /central/trunk/xmlrpc.php | |
parent | d3269c436f707db85a703169002bde9b011af3f0 (diff) | |
download | instadisc-b183ebe5aa8da9f77cd412bee077f598182b767d.tar.gz instadisc-b183ebe5aa8da9f77cd412bee077f598182b767d.tar.bz2 instadisc-b183ebe5aa8da9f77cd412bee077f598182b767d.zip |
Central: Tweaked deserialization
Diffstat (limited to 'central/trunk/xmlrpc.php')
-rw-r--r-- | central/trunk/xmlrpc.php | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/central/trunk/xmlrpc.php b/central/trunk/xmlrpc.php index 5373f80..18aa6cb 100644 --- a/central/trunk/xmlrpc.php +++ b/central/trunk/xmlrpc.php | |||
@@ -63,7 +63,10 @@ function requestRetained($username, $verification, $verificationID) | |||
63 | $i=0; | 63 | $i=0; |
64 | while ($getitems3[$i] = mysql_fetch_array($getitems2)) | 64 | while ($getitems3[$i] = mysql_fetch_array($getitems2)) |
65 | { | 65 | { |
66 | instaDisc_sendItem($username, $getitems3[$i]['itemID']); | 66 | if (!instaDisc_sendItem($username, $getitems3[$i]['itemID'])) |
67 | { | ||
68 | return new xmlrpcresp(new xmlrpcval(1, "int")); | ||
69 | } | ||
67 | $i++; | 70 | $i++; |
68 | } | 71 | } |
69 | 72 | ||