Moodle code style fix.

This commit is contained in:
Daniel Thee Roperto
2016-12-21 14:20:26 +11:00
parent 0380c6ebec
commit efbdb77ae6
2 changed files with 2 additions and 4 deletions

View File

@@ -45,8 +45,7 @@ if (is_callable('auth_outage_bootstrap_callback')) {
// 2) Check for allowed scripts or IPs during outages.
$allowed = !file_exists($CFG->dataroot.'/climaintenance.php') // Not in maintenance mode.
|| (defined('ABORT_AFTER_CONFIG') && ABORT_AFTER_CONFIG) // Only config requested.
|| (defined('CLI_SCRIPT') && CLI_SCRIPT) // Allow CLI scripts.
;
|| (defined('CLI_SCRIPT') && CLI_SCRIPT); // Allow CLI scripts.
if (!$allowed) {
// Call the climaintenance.php which will check for allowed IPs.
$CFG->dirroot = dirname(dirname(dirname(__FILE__))); // It is not defined yet but the script below needs it.

View File

@@ -66,8 +66,7 @@ class maintenance_static_page_io {
$result = outagelib::fetch_page($file);
} else {
$result = ['contents' => @file_get_contents($file)];
$result['mime'] = (new finfo(FILEINFO_MIME_TYPE))
->buffer($result['contents']); // Not perfect, but try guessing it.
$result['mime'] = (new finfo(FILEINFO_MIME_TYPE))->buffer($result['contents']); // Try guessing it.
}
if ($result['contents'] === false) {