Skip to content

Commit

Permalink
Improvement: Add really short keepalive intervals
Browse files Browse the repository at this point in the history
  • Loading branch information
abias committed Jun 30, 2017
1 parent 4839b5c commit 78fdd78
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@ moodle-local_session_keepalive
Changes
-------

### Unreleased

* 2017-06-30 - Improvement: Add really short keepalive intervals - Credits to Alexey Lustin

### v3.2-r3

* 2017-05-19 - Bugfix: String in language pack didn't work for Moodle installed in subdirectories - Credits to David Mudrák
Expand Down
2 changes: 1 addition & 1 deletion settings.php
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
0));

// Create keepalive interval control widget.
$choices = array(10 => 10, 30 => 30, 60 => 60, 90 => 90, 120 => 120, 180 => 180, 240 => 240, 300 => 300);
$choices = array(1 => 1, 2 => 2, 5 => 5, 10 => 10, 30 => 30, 60 => 60, 90 => 90, 120 => 120, 180 => 180, 240 => 240, 300 => 300);
$sessionhandlingurl = new \moodle_url('/admin/settings.php', array('section' => 'sessionhandling'));
$link = \html_writer::link($sessionhandlingurl, get_string('sessionhandling', 'core_admin'));
$sessiontimeoutmin = ($CFG->sessiontimeout / 60);
Expand Down

0 comments on commit 78fdd78

Please sign in to comment.