MDL-51181 config: Correct documentation of lock_factory

This commit is contained in:
Michael Aherne 2015-08-24 09:06:26 +01:00 committed by David Monllao
parent 16134e337f
commit 4750b1379f

View file

@ -484,8 +484,8 @@ $CFG->admin = 'admin';
// $CFG->supportuserid = -20; // $CFG->supportuserid = -20;
// //
// Moodle 2.7 introduces a locking api for critical tasks (e.g. cron). // Moodle 2.7 introduces a locking api for critical tasks (e.g. cron).
// The default locking system to use is DB locking for MySQL and Postgres, and File // The default locking system to use is DB locking for Postgres, and file locking for
// locking for Oracle and SQLServer. If $CFG->preventfilelocking is set, then the default // MySQL, Oracle and SQLServer. If $CFG->preventfilelocking is set, then the default
// will always be DB locking. It can be manually set to one of the lock // will always be DB locking. It can be manually set to one of the lock
// factory classes listed below, or one of your own custom classes implementing the // factory classes listed below, or one of your own custom classes implementing the
// \core\lock\lock_factory interface. // \core\lock\lock_factory interface.