From 50484cd22002396fb04de9cd769cc3e87d4446cb Mon Sep 17 00:00:00 2001 From: bobopinna Date: Wed, 15 Dec 2004 13:22:46 +0000 Subject: [PATCH] Fixed a UTF8-ISO problem --- mod/scorm/lib.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mod/scorm/lib.php b/mod/scorm/lib.php index 016c448117c..902000444ed 100755 --- a/mod/scorm/lib.php +++ b/mod/scorm/lib.php @@ -479,7 +479,7 @@ function scorm_endElement($parser, $name) { function scorm_characterData($parser, $data) { global $datacontent; - $datacontent = $data; + $datacontent = utf_decode($data); } function scorm_parse($basedir,$file,$scorm_id) {