From 28326b2a6ce150cbcd697d38945d5209e47bb982 Mon Sep 17 00:00:00 2001 From: Petr Skoda Date: Sun, 29 Aug 2010 10:57:42 +0000 Subject: [PATCH] MDL-23984 dataroot module storage is not supported in 2.0 --- lib/deprecatedlib.php | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/lib/deprecatedlib.php b/lib/deprecatedlib.php index ce5f669c189..6df611e03f2 100644 --- a/lib/deprecatedlib.php +++ b/lib/deprecatedlib.php @@ -1919,9 +1919,7 @@ function require_js($lib) { * @return string|false Returns full path to directory if successful, false if not */ function make_mod_upload_directory($courseid) { - global $CFG; - debugging('make_mod_upload_directory has been deprecated by the file API changes in Moodle 2.0.', DEBUG_DEVELOPER); - return make_upload_directory($courseid .'/'. $CFG->moddata); + throw new coding_exception('make_mod_upload_directory has been deprecated by the file API changes in Moodle 2.0.'); } /**