'enrol_plugins_enabled' => 'manual',
'style' => 'default',
'template' => 'default',
- 'theme' => 'standard', //TODO: MDL-20204 replace with some new default theme when implemented
+ 'theme' => 'standard', //TODO: MDL-21149 replace with some new default theme when implemented
'filter_multilang_converted' => 1,
'siteidentifier' => random_string(32).get_host_from_url($CFG->wwwroot),
'backup_version' => 2008111700,
@header('Expires: Mon, 20 Aug 1969 09:23:00 GMT');
@header('Last-Modified: ' . gmdate('D, d M Y H:i:s') . ' GMT');
-//TODO: add rtl support here
+//TODO: add rtl support here, make it match new default theme MDL-21149
echo '
try {
$settings = get_config('theme_'.$themename);
} catch (dml_exception $e) {
- // most probably not installed yet
+ // most probably moodle tables not created yet
$settings = new object();
}
return new theme_config($config);
} else {
// bad luck, the requested theme has some problems - admin see details in theme config
- return new theme_config(theme_config::find_theme_config('standard', $settings)); // TODO: use some other default
+ return new theme_config(theme_config::find_theme_config('standard', $settings)); // TODO: use some other default MDL-21149
}
}