MDL-69477 install: Ensure CFG variables are set before using them
On installation (or also phpunit/behat unit) some CFG variables were being used (on setting validation) before being set. So this commit just verifies they are set before using them. Note that, strictly speaking, only one of them ($CFG->searchenginequeryonly) required the extra check, but I think it's better to apply it to all them, as a reference and in case validations are run in any other order.
This commit is contained in:
@@ -555,7 +555,7 @@ if ($hassiteconfig) {
|
||||
global $CFG;
|
||||
|
||||
// Check nobody's setting the indexing and query-only server to the same one.
|
||||
if ($CFG->searchenginequeryonly === $value) {
|
||||
if (isset($CFG->searchenginequeryonly) && $CFG->searchenginequeryonly === $value) {
|
||||
return get_string('searchenginequeryonlysame', 'admin');
|
||||
} else {
|
||||
return '';
|
||||
@@ -625,7 +625,7 @@ if ($hassiteconfig) {
|
||||
global $CFG;
|
||||
|
||||
// Check nobody's setting the indexing and query-only server to the same one.
|
||||
if ($CFG->searchengine === $value) {
|
||||
if (isset($CFG->searchengine) && $CFG->searchengine === $value) {
|
||||
return get_string('searchenginequeryonlysame', 'admin');
|
||||
} else {
|
||||
return '';
|
||||
|
||||
Reference in New Issue
Block a user