diff --git a/main/dropbox/dropbox_functions.inc.php b/main/dropbox/dropbox_functions.inc.php index b7e2c59ef9..fe17001d2f 100644 --- a/main/dropbox/dropbox_functions.inc.php +++ b/main/dropbox/dropbox_functions.inc.php @@ -50,12 +50,12 @@ function handle_multiple_actions() $dropboxfile=new Dropbox_Person( $_user['user_id'], $is_courseAdmin, $is_courseTutor); foreach ($checked_file_ids as $key=>$value) { - if ($_GET['view']=='received' OR !$_GET['view']) + if ($_GET['view']=='received') { $dropboxfile->deleteReceivedWork($value); $message=get_lang('ReceivedFileDeleted'); } - if ($_GET['view']=='sent') + if ($_GET['view']=='sent' OR empty($_GET['view'])) { $dropboxfile->deleteSentWork($value); $message=get_lang('SentFileDeleted'); diff --git a/main/dropbox/dropbox_init.inc.php b/main/dropbox/dropbox_init.inc.php index 4c6bc0a458..12476859f6 100644 --- a/main/dropbox/dropbox_init.inc.php +++ b/main/dropbox/dropbox_init.inc.php @@ -287,7 +287,7 @@ if((!$is_allowed_in_course || !$is_courseMember) && !api_is_allowed_to_edit()) BREADCRUMBS ============================================================================== */ -if (!$_GET['view'] OR $_GET['view']=='received') +if ($_GET['view']=='received') { $interbreadcrumb[] = array ("url" => "../dropbox/index.php", "name" => dropbox_lang("dropbox", "noDLTT")); $nameTools = get_lang('ReceivedFiles'); @@ -298,7 +298,7 @@ if (!$_GET['view'] OR $_GET['view']=='received') $nameTools = get_lang('AddNewCategory'); } } -if ($_GET['view']=='sent') +if ($_GET['view']=='sent' OR empty($_GET['view'])) { $interbreadcrumb[] = array ("url" => "../dropbox/index.php", "name" => dropbox_lang("dropbox", "noDLTT")); $nameTools = get_lang('SentFiles');