From 894a4f35b91f2f5cb75acf412ee6d02565a7e18f Mon Sep 17 00:00:00 2001 From: Matteo Scaramuccia Date: Sun, 4 Nov 2012 19:57:54 +0100 Subject: [PATCH] MDL-36360 Removed 'lock': cachestore_file_addinstance_form::configuration_definition() doesn't include it --- cache/stores/file/lib.php | 3 --- 1 file changed, 3 deletions(-) diff --git a/cache/stores/file/lib.php b/cache/stores/file/lib.php index a33046f5e6d19..03d2b32ffca5f 100644 --- a/cache/stores/file/lib.php +++ b/cache/stores/file/lib.php @@ -465,9 +465,6 @@ public function purge() { public static function config_get_configuration_array($data) { $config = array(); - if (isset($data->lock)) { - $config['lock'] = $data->lock; - } if (isset($data->path)) { $config['path'] = $data->path; }