Details
-
Type:
Bug
-
Status:
Closed
-
Priority:
Minor
-
Resolution: Won't Fix
-
Affects Version/s: 1.9.5
-
Fix Version/s: None
-
Component/s: Feedback
-
Labels:None
-
Difficulty:Easy
-
Affected Branches:MOODLE_19_STABLE
Description
Add "Information-Type" question to the feedback using Course Title and Course Category fields
Submit something as a student
Login as an instructor and download responses into Excel
Look up Course Title and Course Category fields. They seem to be OK.
Now in that Excel file, click the second tab, called "detailed"
You will noticed that both Course Title and Course Category fields list "Wednesday, December 31, 1969, 06:00 PM" for some reason
I can only confirm this for own installation, so please double-check on yours ![]()
solution:
modified the get_printval function in mod/feedback/item/info/lib.php:
FROM:
function get_printval($item, $value) { if(!isset($value->value)) return ''; return UserDate($value->value); }
TO:
function get_printval($item, $value) { if(!isset($value->value)) return ''; else if (is_numeric($value->value)) return UserDate($value->value); else return $value->value; }