about summary refs log tree commit diff stats
path: root/central/trunk/xmlrpc.php
diff options
context:
space:
mode:
authorKelly Rauchenberger <fefferburbia@gmail.com>2008-08-06 13:39:33 +0000
committerKelly Rauchenberger <fefferburbia@gmail.com>2008-08-06 13:39:33 +0000
commitb183ebe5aa8da9f77cd412bee077f598182b767d (patch)
treeddc9bd9afbabe341b47debadd36184fe8ae4fa60 /central/trunk/xmlrpc.php
parentd3269c436f707db85a703169002bde9b011af3f0 (diff)
downloadinstadisc-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.php5
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