Updating from 2.7+ to Moodle 2.9.1

Re: Updating from 2.7+ to Moodle 2.9.1

by Ilya Tregubov -
Number of replies: 1
Picture of Core developers Picture of Moodle HQ Picture of Testers

Hi Brandon,


Did you found what caused the issue - I have similar porblem


Ilya

In reply to Ilya Tregubov

Re: Updating from 2.7+ to Moodle 2.9.1

by Martin Mastny -
Picture of Core developers Picture of Peer reviewers Picture of Testers

In my case, this is done by one of the plugins (https://moodle.org/plugins/mod_groupselect) using an admin string definition. Definition was removed during upgrade, so it's no longer present in code and moodle is complaining.

Solution to this is edit mod/groupselect/edit.php: change  get_string('configrequiremodintro', 'admin')  to get_string('configrequiremodintro', 'mod_groupselect') 

and paste  $string['configrequiremodintro'] = 'Disable this option if you do not want to force users to enter description of each activity.';

to mod/groupselect/lang/en.php 


This might be caused by another plugin as well, search your moodle directory folder for 'configrequiremodintro' recursively and you'll see !

Hope this helps

M.