Closed sensei-hacker closed 10 years ago
master (Moodle 2.6DEV) throws this warning:
get_context_instance() is deprecated, please use context_xxxx::instance() instead.
In deprecatedlib.php, I see get_context_instance has been deprecated since 2.2.
On line #97 of blocks/quickfindlist/block_quickfindlist.php, change:
$context_system = get_context_instance(CONTEXT_SYSTEM);
to:
$context_system = context_system::instance();
Closed as part of #13 batch "update for Moodle 2.7"
tks!
master (Moodle 2.6DEV) throws this warning:
get_context_instance() is deprecated, please use context_xxxx::instance() instead.
In deprecatedlib.php, I see get_context_instance has been deprecated since 2.2.
On line #97 of blocks/quickfindlist/block_quickfindlist.php, change:
$context_system = get_context_instance(CONTEXT_SYSTEM);
to:
$context_system = context_system::instance();