Merge branch '45457-27' of git://github.com/samhemelryk/moodle

This commit is contained in:
Eloy Lafuente (stronk7) 2014-05-07 23:54:36 +02:00
commit 9c1bbddce7
2 changed files with 3 additions and 3 deletions

View file

@ -32,7 +32,7 @@ defined('MOODLE_INTERNAL') || die();
* This is intended for reports, use get_log_manager() to get * This is intended for reports, use get_log_manager() to get
* the configured instance. * the configured instance.
* *
* @package core\log * @package core
*/ */
interface manager { interface manager {
/** /**

View file

@ -17,7 +17,7 @@
/** /**
* This file contains functions used by the participation reports * This file contains functions used by the participation reports
* *
* @package Report_participation * @package report_participation
* @copyright 2014 Rajesh Taneja <rajesh@moodle.com> * @copyright 2014 Rajesh Taneja <rajesh@moodle.com>
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
*/ */
@ -231,4 +231,4 @@ function report_participation_print_filter_form($course, $timefrom, $minlog, $ac
echo '<label for="menuaction">'.get_string('showactions').'</label>'."\n"; echo '<label for="menuaction">'.get_string('showactions').'</label>'."\n";
echo html_writer::select($actionoptions,'action',$action,false); echo html_writer::select($actionoptions,'action',$action,false);
echo '<input type="submit" value="'.get_string('go').'" />'."\n</div></form>\n"; echo '<input type="submit" value="'.get_string('go').'" />'."\n</div></form>\n";
} }