From f528198ea2c0055fa8840c3ee83defae74366d3f Mon Sep 17 00:00:00 2001 From: Julio Montoya Date: Thu, 12 Dec 2013 14:49:08 +0100 Subject: [PATCH] Fixing typo. --- main/dropbox/dropbox_functions.inc.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 {