From: vyshane Date: Wed, 8 Mar 2006 04:54:57 +0000 (+0000) Subject: Made some of the tabs linked even if selected in the different views. X-Git-Url: http://git.mjollnir.org/gw?a=commitdiff_plain;h=f1b6ce824d6f7704bdc6199718671ed04b20d73a;p=moodle.git Made some of the tabs linked even if selected in the different views. --- diff --git a/mod/data/tabs.php b/mod/data/tabs.php index 8cf7e431e9..b168259a21 100755 --- a/mod/data/tabs.php +++ b/mod/data/tabs.php @@ -32,13 +32,13 @@ $inactive = NULL; $row = array(); - $row[] = new tabobject('browse', $CFG->wwwroot.'/mod/data/view.php?d='.$data->id, get_string('browse','data')); + $row[] = new tabobject('browse', $CFG->wwwroot.'/mod/data/view.php?d='.$data->id, get_string('browse','data'), '', true); if (isteacher($course->id) or ($data->participants == PARTICIPANTS_S) or ($data->participants == PARTICIPANTS_TS)){ - $row[] = new tabobject('add', $CFG->wwwroot.'/mod/data/add.php?d='.$data->id, get_string('add','data')); + $row[] = new tabobject('add', $CFG->wwwroot.'/mod/data/add.php?d='.$data->id, get_string('add','data'), '', true); } if (isteacher($course->id)) { $row[] = new tabobject('templates', $CFG->wwwroot.'/mod/data/templates.php?d='.$data->id.'&mode=singletemplate', get_string('templates','data')); - $row[] = new tabobject('fields', $CFG->wwwroot.'/mod/data/fields.php?d='.$data->id, get_string('fields','data')); + $row[] = new tabobject('fields', $CFG->wwwroot.'/mod/data/fields.php?d='.$data->id, get_string('fields','data'), '', true); } $tabs[] = $row; @@ -83,4 +83,4 @@ print_tabs($tabs, $currenttab, $inactive); -?> +?> \ No newline at end of file