Skip to content

Commit

Permalink
V2.8.2.3
Browse files Browse the repository at this point in the history
  • Loading branch information
gjb2048 committed Apr 20, 2015
1 parent 3d118dc commit 2b8f019
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
3 changes: 3 additions & 0 deletions Readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -244,6 +244,9 @@ can be really useful in visualising the issue along with any files you consider

Version Information
===================
Version 2.8.2.3
1. Fixed logic flaw with section parameters on course URL's when using single page display.

Version 2.8.2.2
1. Added print media styles.
2. Version information to no longer have the date as will work better.
Expand Down
2 changes: 1 addition & 1 deletion format.php
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@
}
$renderer->set_portable($portable);

if (!empty($displaysection)) {
if ((!empty($displaysection)) && ($course->coursedisplay == COURSE_DISPLAY_MULTIPAGE)) {
$renderer->print_single_section_page($course, null, null, null, null, $displaysection);
} else {
$defaulttogglepersistence = clean_param(get_config('format_topcoll', 'defaulttogglepersistence'), PARAM_INT);
Expand Down
4 changes: 2 additions & 2 deletions version.php
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,8 @@
*/
defined('MOODLE_INTERNAL') || die();

$plugin->version = 2015040900;
$plugin->version = 2015042000;
$plugin->maturity = MATURITY_STABLE;
$plugin->requires = 2014111000.00; // 2.8 (Build: 20141110).
$plugin->component = 'format_topcoll';
$plugin->release = '2.8.2.2';
$plugin->release = '2.8.2.3';

0 comments on commit 2b8f019

Please sign in to comment.