diff options
author | Christian Pointner <equinox@helsinki.at> | 2015-12-28 04:38:14 (GMT) |
---|---|---|
committer | Christian Pointner <equinox@helsinki.at> | 2015-12-28 04:38:14 (GMT) |
commit | 00638c1416bc314c581b0ca67efe59c76f12e838 (patch) | |
tree | 93c69cf968d9e6d218281da536d57aeff0f8f12c | |
parent | b1dbfb3682d7d231ceed2f43819cac10c0012690 (diff) |
fixed call to get_dropboxes
-rwxr-xr-x | rh-bin/listdropboxes.cgi | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/rh-bin/listdropboxes.cgi b/rh-bin/listdropboxes.cgi index 61e85d9..2eabf22 100755 --- a/rh-bin/listdropboxes.cgi +++ b/rh-bin/listdropboxes.cgi @@ -50,7 +50,7 @@ if(!defined $username) { ($result, $status, $errorstring) = RHRD::rddb::check_token($ctx, $username, $token); if($result == 1) { $responsecode = 200; - @dropboxes = RHRD::rddb::get_dropboxes($ctx, $username, $type); + @dropboxes = RHRD::rddb::get_dropboxes($ctx, $username, undef, $type); if(!defined $dropboxes[0] && defined $dropboxes[1]) { $responsecode = 500; $status = $dropboxes[1]; |