Skip to content

Commit

Permalink
MDL-28232 - Course log text export is missing a new line
Browse files Browse the repository at this point in the history
  • Loading branch information
danpoltawski authored and Sam Hemelryk committed Jul 25, 2011
1 parent 50e3c7d commit d0cdf8e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion course/lib.php
Original file line number Diff line number Diff line change
Expand Up @@ -565,7 +565,7 @@ function print_log_csv($course, $user, $date, $order='l.time DESC', $modname,
header("Pragma: public");

echo get_string('savedat').userdate(time(), $strftimedatetime)."\n";
echo $text;
echo $text."\n";

if (empty($logs['logs'])) {
return true;
Expand Down

0 comments on commit d0cdf8e

Please sign in to comment.