MDL-13000 minor fix merged from MOODLE_19_STABLE

This commit is contained in:
ikawhero 2008-06-30 06:08:57 +00:00
parent 8b65d45c2f
commit 8231ba1932

View File

@ -175,6 +175,12 @@ function upgrade_local_db($continueto) {
upgrade_log_start();
notify('WARNING!!! The local version you are using is OLDER than the version that made these databases!');
}
/// Capabilities
if (!update_capabilities('local')) {
error('Could not set up the capabilities for local!');
}
upgrade_log_finish();
}