Merge branch 'MDL-35376' of git://github.com/rlorenzo/moodle

This commit is contained in:
Dan Poltawski 2012-09-17 12:47:46 +08:00
commit 7e3d57fca9
2 changed files with 2 additions and 2 deletions

View file

@ -832,7 +832,7 @@ function file_save_draft_area_files($draftitemid, $contextid, $component, $filea
if ($oldfile->get_contenthash() != $newfile->get_contenthash() || $oldfile->get_filesize() != $newfile->get_filesize()) { if ($oldfile->get_contenthash() != $newfile->get_contenthash() || $oldfile->get_filesize() != $newfile->get_filesize()) {
$oldfile->replace_content_with($newfile); $oldfile->replace_content_with($newfile);
// push changes to all local files that are referencing this file // push changes to all local files that are referencing this file
$fs->update_references_to_storedfile($this); $fs->update_references_to_storedfile($oldfile);
} }
// unchanged file or directory - we keep it as is // unchanged file or directory - we keep it as is

View file

@ -1821,7 +1821,7 @@ class file_storage {
* @param stored_file $storedfile * @param stored_file $storedfile
*/ */
public function update_references_to_storedfile(stored_file $storedfile) { public function update_references_to_storedfile(stored_file $storedfile) {
global $CFG; global $CFG, $DB;
$params = array(); $params = array();
$params['contextid'] = $storedfile->get_contextid(); $params['contextid'] = $storedfile->get_contextid();
$params['component'] = $storedfile->get_component(); $params['component'] = $storedfile->get_component();