Restoring access to the report by fixing skill::isAllow call

pull/2487/head
Nicolas Ducoulombier 8 years ago
parent 6105679fd5
commit 33cc83d2d7
  1. 4
      main/social/my_skills_report.php

@ -9,7 +9,8 @@
require_once __DIR__.'/../inc/global.inc.php';
Skill::isAllow();
$userId = api_get_user_id();
Skill::isAllow($userId);
$isStudent = api_is_student();
$isStudentBoss = api_is_student_boss();
@ -20,7 +21,6 @@ if (!$isStudent && !$isStudentBoss && !$isDRH) {
exit;
}
$userId = api_get_user_id();
$skillTable = Database::get_main_table(TABLE_MAIN_SKILL);
$skillRelUserTable = Database::get_main_table(TABLE_MAIN_SKILL_REL_USER);
$courseTable = Database::get_main_table(TABLE_MAIN_COURSE);

Loading…
Cancel
Save