mirror of
https://github.com/moodle/moodle.git
synced 2025-03-14 04:30:15 +01:00
MDL-16134 - fixing regression introduced by conversion to exceptions
This commit is contained in:
parent
f240dc7036
commit
23cbde0a14
@ -1379,9 +1379,10 @@ abstract class portfolio_plugin_base {
|
||||
global $DB;
|
||||
foreach ($config as $key => $value) {
|
||||
// try set it in $this first
|
||||
if ($this->set($key, $value)) {
|
||||
try {
|
||||
$this->set($key, $value);
|
||||
continue;
|
||||
}
|
||||
} catch (portfolio_exception $e) { }
|
||||
if (!in_array($key, $this->get_allowed_config())) {
|
||||
$a = (object)array('property' => $key, 'class' => get_class($this));
|
||||
throw new portfolio_export_exception($this->get('exporter'), 'invalidconfigproperty', 'portfolio', null, $a);
|
||||
|
Loading…
x
Reference in New Issue
Block a user