From b08a722573c95c8be5cf34e731ac0eee80801ed5 Mon Sep 17 00:00:00 2001 From: stronk7 Date: Sun, 24 Aug 2008 16:33:26 +0000 Subject: [PATCH] Prevent some notices at install. MDL-16188 ; merged from 19_STABLE --- lib/environmentlib.php | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/lib/environmentlib.php b/lib/environmentlib.php index 825beaf3ad..2e68642dca 100644 --- a/lib/environmentlib.php +++ b/lib/environmentlib.php @@ -7,7 +7,7 @@ // Moodle - Modular Object-Oriented Dynamic Learning Environment // // http://moodle.com // // // -// Copyright (C) 1999 onwards Martin Dougiamas http://dougiamas.com // +// Copyright (C) 1999 onwards Martin Dougiamas http://dougiamas.com // // (C) 2001-3001 Eloy Lafuente (stronk7) http://contiento.com // // // // This program is free software; you can redistribute it and/or modify // @@ -525,7 +525,8 @@ function environment_custom_checks($version) { $results = array(); /// Get current Moodle version (release) for later compare - $current_version = normalize_version($CFG->release); + $release = isset($CFG->release) ? $CFG->release : $version; /// In case $CFG fails (at install) use $version + $current_version = normalize_version($release); /// Get the enviroment version we need if (!$data = get_environment_for_version($version)) { -- 2.39.5