This commit is contained in:
moodler
2005-04-25 10:56:11 +00:00
parent 0378f857ee
commit f2379d2d2e
2 changed files with 6 additions and 4 deletions
+4 -2
View File
@@ -669,9 +669,9 @@ function forum_make_mail_html($course, $forum, $discussion, $post, $userfrom, $u
$posthtml .= '<link rel="stylesheet" type="text/css" href="'.$stylesheet.'" />'."\n";
}
$posthtml .= '</head>';
$posthtml .= "\n<body>\n\n";
$posthtml .= "\n<body id=\"email\">\n\n";
$posthtml .= '<div class="mail navbar">'.
$posthtml .= '<div class="navbar">'.
'<a target="_blank" href="'.$CFG->wwwroot.'/course/view.php?id='.$course->id.'">'.$course->shortname.'</a> &raquo; '.
'<a target="_blank" href="'.$CFG->wwwroot.'/mod/forum/index.php?id='.$course->id.'">'.$strforums.'</a> &raquo; '.
'<a target="_blank" href="'.$CFG->wwwroot.'/mod/forum/view.php?f='.$forum->id.'">'.format_string($forum->name,true).'</a>';
@@ -688,6 +688,8 @@ function forum_make_mail_html($course, $forum, $discussion, $post, $userfrom, $u
get_string('unsubscribe', 'forum').'</a></div>';
}
$posthtml .= '</body>';
return $posthtml;
}
+2 -2
View File
@@ -1,6 +1,6 @@
<?php
<?php // $Id$
// Set tracking option for the forum.
// Set tracking option for the forum.
require_once("../../config.php");
require_once("lib.php");