|
@@ -32,12 +32,12 @@
|
|
*
|
|
*
|
|
* @package chamilo.document
|
|
* @package chamilo.document
|
|
*/
|
|
*/
|
|
-// Including the global initialization file
|
|
|
|
-require_once __DIR__.'/../inc/global.inc.php';
|
|
|
|
|
|
|
|
-// Including additional libraries
|
|
|
|
|
|
+require_once __DIR__.'/../inc/global.inc.php';
|
|
require_once api_get_path(LIBRARY_PATH).'specific_fields_manager.lib.php';
|
|
require_once api_get_path(LIBRARY_PATH).'specific_fields_manager.lib.php';
|
|
|
|
|
|
|
|
+api_protect_course_script(true);
|
|
|
|
+
|
|
// Adding extra javascript to the form
|
|
// Adding extra javascript to the form
|
|
$htmlHeadXtra[] = api_get_jquery_libraries_js(['jquery-ui', 'jquery-upload']);
|
|
$htmlHeadXtra[] = api_get_jquery_libraries_js(['jquery-ui', 'jquery-upload']);
|
|
|
|
|
|
@@ -49,7 +49,7 @@ $courseDir = $_course['path'].'/document';
|
|
$sys_course_path = api_get_path(SYS_COURSE_PATH);
|
|
$sys_course_path = api_get_path(SYS_COURSE_PATH);
|
|
$base_work_dir = $sys_course_path.$courseDir;
|
|
$base_work_dir = $sys_course_path.$courseDir;
|
|
$sessionId = api_get_session_id();
|
|
$sessionId = api_get_session_id();
|
|
-$selectcat = isset($_GET['selectcat']) ? Security::remove_XSS($_GET['selectcat']) : null;
|
|
|
|
|
|
+$selectcat = isset($_GET['selectcat']) ? (int) $_GET['selectcat'] : null;
|
|
|
|
|
|
$document_data = [];
|
|
$document_data = [];
|
|
|
|
|
|
@@ -86,14 +86,10 @@ $group_properties = [];
|
|
|
|
|
|
$htmlHeadXtra[] = '<script>
|
|
$htmlHeadXtra[] = '<script>
|
|
function check_unzip() {
|
|
function check_unzip() {
|
|
- if (document.upload.unzip.checked){
|
|
|
|
- //document.upload.if_exists[0].disabled=true;
|
|
|
|
- document.upload.if_exists[1].checked=true;
|
|
|
|
- //document.upload.if_exists[2].disabled=true;
|
|
|
|
|
|
+ if (document.upload.unzip.checked) {
|
|
|
|
+ document.upload.if_exists[1].checked=true;
|
|
} else {
|
|
} else {
|
|
document.upload.if_exists[2].checked=true;
|
|
document.upload.if_exists[2].checked=true;
|
|
- //document.upload.if_exists[0].disabled=false;
|
|
|
|
- //document.upload.if_exists[2].disabled=false;
|
|
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|