diff --git a/main/newscorm/lp_controller.php b/main/newscorm/lp_controller.php index 6b53b56f7c..69e5f525a8 100644 --- a/main/newscorm/lp_controller.php +++ b/main/newscorm/lp_controller.php @@ -151,7 +151,19 @@ $fck_attribute['ToolbarSet'] = 'Full'; $fck_attribute['Config']['FullPage'] = true; if($_GET['isStudentView'] == 'true') - $_REQUEST['action'] = 'view'; +{ + if($_REQUEST['action'] != 'list' AND $_REQUEST['action'] != 'view') + { + if(!empty($_REQUEST['lp_id'])) + { + $_REQUEST['action'] = 'view'; + } + else + { + $_REQUEST['action'] = 'list'; + } + } +} switch($_REQUEST['action']) {