From 55e7836cfd3f7c2ec3bb76ad643a46ff2766a087 Mon Sep 17 00:00:00 2001 From: Adam Riddell Date: Thu, 13 Jul 2017 11:23:18 +1000 Subject: [PATCH 1/2] Add global CSS to hide core maintenance warning - The core maintenance mode message is redundant and appears in some circumstances that are undesirable - e.g. inside active SCORM activities or prior to the defined warning message period. --- styles.css | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 styles.css diff --git a/styles.css b/styles.css new file mode 100644 index 0000000..38c43c0 --- /dev/null +++ b/styles.css @@ -0,0 +1,8 @@ +/** + * Globally supress core Moodle maintenance warning message. + * + * Note that this can be explicitly overridden by themes. + */ +.box.moodle-has-zindex.maintenancewarning { + display: none; +} From bdea7ee0d987365f89df7b0e5e01f2bc778bf3a3 Mon Sep 17 00:00:00 2001 From: Adam Riddell Date: Thu, 13 Jul 2017 11:30:10 +1000 Subject: [PATCH 2/2] Bump plugin version --- version.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/version.php b/version.php index 3ce2413..9814fa8 100644 --- a/version.php +++ b/version.php @@ -28,7 +28,7 @@ defined('MOODLE_INTERNAL') || die(); $plugin->component = "auth_outage"; -$plugin->version = 2017051800; // The current plugin version (Date: YYYYMMDDXX). -$plugin->release = '1.0.8'; // Human-readable release information. +$plugin->version = 2017071300; // The current plugin version (Date: YYYYMMDDXX). +$plugin->release = '1.0.9'; // Human-readable release information. $plugin->requires = 2014051200; // Requires Moodle 2.7 or later. Moodle 3.0 or later recommended. $plugin->maturity = MATURITY_STABLE; // Suitable for PRODUCTION environments!