From: martin Date: Mon, 7 Jan 2002 15:00:15 +0000 (+0000) Subject: Added date stamp on journal entries X-Git-Url: http://git.mjollnir.org/gw?a=commitdiff_plain;h=873f20962dd172b7ef5a34775f29837daa45879e;p=moodle.git Added date stamp on journal entries --- diff --git a/mod/journal/user.php b/mod/journal/user.php index 7e12fb2770..ffd95151b5 100644 --- a/mod/journal/user.php +++ b/mod/journal/user.php @@ -44,6 +44,9 @@ echo "$journal->week"; echo "cellcontent\">"; echo "

wwwroot/mod/journal/view.php?id=$journal->coursemodule\">$journal->name

"; + if ($entry->modified) { + echo "

Last edited: ".moodledate($entry->modified)."

"; + } echo text_to_html($entry->text); if ($entry->teacher) { echo "\n
";