You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
585 B
16 lines
585 B
<?php //$id: $
|
|
/**
|
|
* Process part of the SCORM sub-process for upload. This script MUST BE included by upload/index.php
|
|
* as it prepares most of the variables needed here.
|
|
* @package dokeos.upload
|
|
* @author Yannick Warnier <ywarnier@beeznest.org>
|
|
*/
|
|
/**
|
|
* Process the SCORM package and return to the SCORM tool
|
|
*/
|
|
$cwdir = getcwd();
|
|
require('../newscorm/lp_upload.php');
|
|
//reinit current working directory as many functions in upload change it
|
|
chdir($cwdir);
|
|
header('location: ../newscorm/lp_controller.php?action=list&dialog_box='.urlencode(get_lang('UplUploadSucceeded')));
|
|
?>
|