MDL-23984 dataroot module storage is not supported in 2.0

This commit is contained in:
Petr Skoda
2010-08-29 10:57:42 +00:00
parent 81457bef51
commit 28326b2a6c
+1 -3
View File
@@ -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.');
}
/**