From f822e12f70d17520098ee3f323e846dd7cdfcbb2 Mon Sep 17 00:00:00 2001 From: Julio Montoya Date: Tue, 31 Jan 2012 15:11:19 +0100 Subject: [PATCH] Fixing my reporting page (bis) see BT#3614 --- main/inc/lib/tracking.lib.php | 13 ++++++------- main/session/index.php | 2 +- 2 files changed, 7 insertions(+), 8 deletions(-) diff --git a/main/inc/lib/tracking.lib.php b/main/inc/lib/tracking.lib.php index 04974e3e5c..c031ba7e9b 100644 --- a/main/inc/lib/tracking.lib.php +++ b/main/inc/lib/tracking.lib.php @@ -2689,14 +2689,13 @@ class Tracking { $html .= ''; - //LP table results - + //LP table results $html .=''; - $html .= Display::tag('th', get_lang('Learnpaths'), array('class'=>'head', 'style'=>'color:#000')); - $html .= Display::tag('th', get_lang('LatencyTimeSpent'), array('class'=>'head', 'style'=>'color:#000')); - $html .= Display::tag('th', get_lang('Progress'), array('class'=>'head', 'style'=>'color:#000')); - $html .= Display::tag('th', get_lang('Score'), array('class'=>'head', 'style'=>'color:#000')); - $html .= Display::tag('th', get_lang('LastConnexion'), array('class'=>'head', 'style'=>'color:#000')); + $html .= Display::tag('th', get_lang('Learnpaths'), array('class'=>'head', 'style'=>'color:#000')); + $html .= Display::tag('th', get_lang('LatencyTimeSpent'), array('class'=>'head', 'style'=>'color:#000')); + $html .= Display::tag('th', get_lang('Progress'), array('class'=>'head', 'style'=>'color:#000')); + $html .= Display::tag('th', get_lang('Score'), array('class'=>'head', 'style'=>'color:#000')); + $html .= Display::tag('th', get_lang('LastConnexion'), array('class'=>'head', 'style'=>'color:#000')); $html .= ''; $list = new LearnpathList(api_get_user_id(), $course_info['code'], $session_id, 'publicated_on ASC', true); diff --git a/main/session/index.php b/main/session/index.php index 4a5874df92..4d16bd0401 100644 --- a/main/session/index.php +++ b/main/session/index.php @@ -9,7 +9,7 @@ * Code */ // Language files that should be included. -$language_file = array('courses', 'index','tracking','exercice', 'admin'); +$language_file = array('learnpath', 'courses', 'index','tracking','exercice', 'admin'); $cidReset = true; require_once '../inc/global.inc.php'; require_once api_get_path(SYS_CODE_PATH).'newscorm/learnpathList.class.php';