Hia, and a happy new year to you!

getting more warnings in my syslog due to "undefined constants", simply meaning constants are defined without quotes. It's these:

define(SCORM_DEFAULT_HEIGHT, 768);
define(SCORM_DEFAULT_WIDTH, 1024);
define(SCORM_DEFAULT_FOOTER, TRUE);

(with the ''s)

which should be:

define('SCORM_DEFAULT_HEIGHT', 768);
define('SCORM_DEFAULT_WIDTH', 1024);
define('SCORM_DEFAULT_FOOTER', TRUE);

line 41-43 in SCORM.module

Comments

dirk.westrup’s picture

Assigned: Unassigned » pgerling
pgerling’s picture

Status: Active » Closed (fixed)