Skip to content

Commit

Permalink
MDL-41635 Reports: Added missing string in loglive reports
Browse files Browse the repository at this point in the history
Under course administration navigation log live doesn't appear
or appear with empty string (in some themes), this is happening
because text passed is empty.
  • Loading branch information
FilipBenco authored and Rajesh Taneja committed Nov 20, 2013
1 parent 2b10fa0 commit 7843fb7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions report/loglive/lib.php
Expand Up @@ -39,7 +39,7 @@ function report_loglive_extend_navigation_course($navigation, $course, $context)
global $CFG, $OUTPUT;
if (has_capability('report/loglive:view', $context)) {
$url = new moodle_url('/report/loglive/index.php', array('id'=>$course->id, 'inpopup'=>1));
$action = new action_link($url, get_string('pluginname', 'report_loglive'), new popup_action('click', $url));
$navigation->add('', $action, navigation_node::TYPE_SETTING, null, null, new pix_icon('i/report', ''));
$action = new action_link($url, '', new popup_action('click', $url));
$navigation->add(get_string('pluginname', 'report_loglive'), $action, navigation_node::TYPE_SETTING, null, null, new pix_icon('i/report', ''));
}
}

0 comments on commit 7843fb7

Please sign in to comment.