From 49c34bdc0620ff3dbb388069c32e915d3c5a4b54 Mon Sep 17 00:00:00 2001 From: Ivan Tcholakov Date: Sun, 1 Feb 2009 20:49:32 +0100 Subject: [PATCH] [svn r18125] FS#2867 - FCKEditor, simple file manager: A correction in registering in database of newly uploaded files (while a user is in a course). --- .../filemanager/browser/default/connectors/php/commands.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/main/inc/lib/fckeditor/editor/filemanager/browser/default/connectors/php/commands.php b/main/inc/lib/fckeditor/editor/filemanager/browser/default/connectors/php/commands.php index cd4870a937..27c0e2916b 100644 --- a/main/inc/lib/fckeditor/editor/filemanager/browser/default/connectors/php/commands.php +++ b/main/inc/lib/fckeditor/editor/filemanager/browser/default/connectors/php/commands.php @@ -290,7 +290,7 @@ function FileUpload( $resourceType, $currentFolder, $sCommand ) if ($sErrorNumber == '0') { - // While we are in a course: Registering the newly created folder in the course's database. + // While we are in a course: Registering the newly uploaded file in the course's database. if (api_is_in_course()) { global $_course, $_user; @@ -310,7 +310,7 @@ function FileUpload( $resourceType, $currentFolder, $sCommand ) $folder_path = '/' + implode('/', $path); $file_size = @filesize($sFilePath); $doc_id = add_document($_course, $file_path, 'file', $file_size, $file_name); - api_item_property_update($_course, TOOL_DOCUMENT, $doc_id, 'FolderCreated', $_user['user_id'], $to_group_id); + api_item_property_update($_course, TOOL_DOCUMENT, $doc_id, 'DocumentAdded', $_user['user_id'], $to_group_id); item_property_update_on_folder($_course, $folder_path, $_user['user_id']); } }