diff options
| author | Kelly Rauchenberger <fefferburbia@gmail.com> | 2008-08-04 20:39:11 +0000 |
|---|---|---|
| committer | Kelly Rauchenberger <fefferburbia@gmail.com> | 2008-08-04 20:39:11 +0000 |
| commit | df9ad3c66c2d866c63776d6a87d8690d69ba00d0 (patch) | |
| tree | 0e198c5fe5cbbd5be63b379a1cf86c9a815e9de4 /central | |
| parent | b4874f6c12de0c3f38b45033f9c346e86fd6747e (diff) | |
| download | instadisc-df9ad3c66c2d866c63776d6a87d8690d69ba00d0.tar.gz instadisc-df9ad3c66c2d866c63776d6a87d8690d69ba00d0.tar.bz2 instadisc-df9ad3c66c2d866c63776d6a87d8690d69ba00d0.zip | |
Central: Fixed Request Retained error
There was a small typo the method signature of requestRetained(), so whenever it was called, the verification would fail. Fixes #14.
Diffstat (limited to 'central')
| -rw-r--r-- | central/trunk/xmlrpc.php | 2 |
1 files changed, 1 insertions, 1 deletions
| diff --git a/central/trunk/xmlrpc.php b/central/trunk/xmlrpc.php index a2d3ba9..3ffd1e1 100644 --- a/central/trunk/xmlrpc.php +++ b/central/trunk/xmlrpc.php | |||
| @@ -54,7 +54,7 @@ function resendItem($username, $verification, $verificationID, $id) | |||
| 54 | return new xmlrpcresp(new xmlrpcval(1, "int")); | 54 | return new xmlrpcresp(new xmlrpcval(1, "int")); |
| 55 | } | 55 | } |
| 56 | 56 | ||
| 57 | function requestRetained($username, $verification, $veriicationID) | 57 | function requestRetained($username, $verification, $verificationID) |
| 58 | { | 58 | { |
| 59 | if (instaDisc_checkVerification($username, $verification, $verificationID, 'users', 'username', 'password')) | 59 | if (instaDisc_checkVerification($username, $verification, $verificationID, 'users', 'username', 'password')) |
| 60 | { | 60 | { |
