Avoid export thematic section without description to pdf - refs BT#12755

pull/2487/head
Angel Fernando Quiroz Campos 9 years ago committed by GitHub
parent 536f7b5ebe
commit d815efeaff
  1. 3
      main/course_progress/thematic_controller.php

@ -246,6 +246,9 @@ class ThematicController
case 'export_single_thematic':
$theme = $thematic->get_thematic_list($thematic_id);
$plans = $thematic->get_thematic_plan_data($theme['id']);
$plans = array_filter($plans, function ($plan) {
return !empty($plan['description']);
});
$advances = $thematic->get_thematic_advance_by_thematic_id($theme['id']);
$view = new Template('', false, false, false, true, false, false);

Loading…
Cancel
Save