diff options
author | Christian Pointner <equinox@helsinki.at> | 2014-09-18 18:46:50 (GMT) |
---|---|---|
committer | Christian Pointner <equinox@helsinki.at> | 2014-09-18 18:46:50 (GMT) |
commit | 2960db4ed4451dcc3481f91d45b035cb5a28a6c6 (patch) | |
tree | 293ad29a43cf68d6040d5254998e5010a3343fbb /listdrobpoxes.cgi | |
parent | 8d02a9dca021a9b772dd96b513be0533c575703f (diff) |
fixed check_token
Diffstat (limited to 'listdrobpoxes.cgi')
-rwxr-xr-x | listdrobpoxes.cgi | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/listdrobpoxes.cgi b/listdrobpoxes.cgi index 4f7050a..772159a 100755 --- a/listdrobpoxes.cgi +++ b/listdrobpoxes.cgi @@ -9,13 +9,13 @@ my $status = 'ERROR'; my $errorstring = 'unknown'; my $responsecode = 500; -my $username = ''; -my $token = ''; - +my $username = 'heslinki'; +my $token = 'asdlkfjlkdsf'; my $dbh; -$dbh, $status, $errorstring) = rddb::opendb(); +($dbh, $status, $errorstring) = rddb::opendb(); if(defined $dbh) { + my $result; ($result, $status, $errorstring) = rddb::check_token($dbh, $username, $token); if($result == 1) { $responsecode = 200; |