Fix scorm export (images not appearing when importing scorm) see BT#11321

1.10.x
jmontoyaa 9 years ago
parent d0b816e223
commit f539581ff2
  1. 5
      main/newscorm/learnpath.class.php

@ -9249,7 +9249,10 @@ class learnpath
if ($pos === 0) {
$abs_img_path_without_subdir = '/'.substr($abs_img_path_without_subdir, strlen($relp));
}
$file_path = realpath(api_get_path(SYS_PATH).$abs_img_path_without_subdir);
//$file_path = realpath(api_get_path(SYS_PATH).$abs_img_path_without_subdir);
$file_path = realpath(api_get_path(SYS_APP_PATH).$abs_img_path_without_subdir);
$file_path = str_replace('\\', '/', $file_path);
$file_path = str_replace('//', '/', $file_path);

Loading…
Cancel
Save