Adding cidReset = true to the Dashboard index.php

skala
Julio Montoya 16 years ago
parent 69c0d858a4
commit 114efef895
  1. 4
      main/dashboard/index.php

@ -9,6 +9,7 @@
// name of the language file that needs to be included // name of the language file that needs to be included
$language_file = array ('index', 'tracking', 'userInfo', 'admin', 'gradebook'); $language_file = array ('index', 'tracking', 'userInfo', 'admin', 'gradebook');
$cidReset = true;
// including files // including files
require_once '../inc/global.inc.php'; require_once '../inc/global.inc.php';
@ -37,11 +38,12 @@ $dashboar_plugin_styles = DashboardManager::get_links_for_styles_from_dashboard_
$htmlHeadXtra[] = $dashboar_plugin_styles; $htmlHeadXtra[] = $dashboar_plugin_styles;
// interbreadcrumb // interbreadcrumb
$interbreadcrumb[] = array ("url" => "index.php", "name" => get_lang('Dashboard')); $interbreadcrumb[] = array ('url' => 'index.php', 'name' => get_lang('Dashboard'));
// course description controller object // course description controller object
$dashboard_controller = new DashboardController(); $dashboard_controller = new DashboardController();
if (isset($_GET['path'])) { if (isset($_GET['path'])) {
$path = $_GET['path']; $path = $_GET['path'];
} }

Loading…
Cancel
Save