Fix thematic plan with token when saving - refs 12840

pull/2487/head
Angel Fernando Quiroz Campos 8 years ago
parent c6139c6ca8
commit 25cdaa3d59
  1. 8
      main/course_progress/index.php
  2. 8
      main/course_progress/thematic_plan.php

@ -69,9 +69,6 @@ if ($action == 'thematic_details' || $action == 'thematic_list') {
// get thematic id
$thematic_id = isset($_GET['thematic_id']) ? (int) $_GET['thematic_id'] : 0;
// get thematic plan description type
$description_type = isset($_GET['description_type']) ? (int) $_GET['description_type'] : 0;
// instance thematic object for using like library here
$thematic = new Thematic();
@ -218,11 +215,6 @@ if ($action == 'thematic_plan_list' || $action == 'thematic_plan_delete') {
if ($action == 'thematic_plan_add' || $action == 'thematic_plan_edit') {
$interbreadcrumb[] = array('url' => 'index.php?'.api_get_cidreq().'&action='.$thematicControl, 'name' => get_lang('ThematicControl'));
$interbreadcrumb[] = array('url' => 'index.php?'.api_get_cidreq().'&action=thematic_plan_list&thematic_id='.$thematic_id, 'name' => get_lang('ThematicPlan').' ('.$cleanThematicTitle.')');
if ($description_type >= ADD_THEMATIC_PLAN) {
$interbreadcrumb[] = array('url' => '#', 'name' => get_lang('NewBloc'));
} else {
$interbreadcrumb[] = array('url' => '#', 'name' => $default_thematic_plan_title[$description_type]);
}
}
if ($action == 'thematic_advance_list' || $action == 'thematic_advance_delete') {
$interbreadcrumb[] = array('url' => 'index.php?'.api_get_cidreq().'&action='.$thematicControl, 'name' => get_lang('ThematicControl'));

@ -26,7 +26,7 @@ if (!empty($thematic_simple_list)) {
}
}
$i = 1;
//$i = 1;
echo Display::tag('h2', $thematic_data['title']);
echo $thematic_data['content'];
@ -36,13 +36,17 @@ if (isset($message) && $message == 'ok') {
}
if ($action === 'thematic_plan_list') {
$token = Security::get_token();
ChamiloSession::write('thematic_plan_token', $token);
$form = new FormValidator(
'thematic_plan_add',
'POST',
'index.php?action=thematic_plan_list&thematic_id='.$thematic_id.'&'.api_get_cidreq()
);
$form->addElement('hidden', 'action', 'thematic_plan_add');
//$form->addElement('hidden', 'thematic_plan_token', $token);
$form->addElement('hidden', 'thematic_plan_token', $token);
$form->addElement('hidden', 'thematic_id', $thematic_id);
foreach ($default_thematic_plan_title as $id => $title) {

Loading…
Cancel
Save