Browse Source

Fixing typo.

Julio Montoya 11 years ago
parent
commit
5affd16c6a
1 changed files with 1 additions and 1 deletions
  1. 1 1
      main/dropbox/dropbox_functions.inc.php

+ 1 - 1
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 {