diff --git a/main/dropbox/dropbox_functions.inc.php b/main/dropbox/dropbox_functions.inc.php index 3dc4669882..46a37ade8c 100644 --- a/main/dropbox/dropbox_functions.inc.php +++ b/main/dropbox/dropbox_functions.inc.php @@ -40,7 +40,7 @@ function handle_multiple_actions() } // STEP 2: at least one file has to be selected. If not we return an error message - $ids = issset($_GET['id']) ? $_GET['id'] : array(); + $ids = isset($_GET['id']) ? $_GET['id'] : array(); if (count($ids)>0) { $checked_file_ids = $_POST['id']; } else {