Skip to content

Commit

Permalink
Merge branch 'MDL-37697-m23' of git://github.com/andrewnicols/moodle …
Browse files Browse the repository at this point in the history
…into MOODLE_23_STABLE
  • Loading branch information
Sam Hemelryk committed Jan 28, 2013
2 parents c5b346d + f4b106e commit 09a8ba4
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion mod/forum/lib.php
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -2956,7 +2956,7 @@ function forum_subscribed_users($course, $forum, $groupid=0, $context = null, $f
*/ */
function forum_get_course_forum($courseid, $type) { function forum_get_course_forum($courseid, $type) {
// How to set up special 1-per-course forums // How to set up special 1-per-course forums
global $CFG, $DB, $OUTPUT; global $CFG, $DB, $OUTPUT, $USER;


if ($forums = $DB->get_records_select("forum", "course = ? AND type = ?", array($courseid, $type), "id ASC")) { if ($forums = $DB->get_records_select("forum", "course = ? AND type = ?", array($courseid, $type), "id ASC")) {
// There should always only be ONE, but with the right combination of // There should always only be ONE, but with the right combination of
Expand All @@ -2970,6 +2970,9 @@ function forum_get_course_forum($courseid, $type) {
$forum = new stdClass(); $forum = new stdClass();
$forum->course = $courseid; $forum->course = $courseid;
$forum->type = "$type"; $forum->type = "$type";
if (!empty($USER->htmleditor)) {
$forum->introformat = $USER->htmleditor;
}
switch ($forum->type) { switch ($forum->type) {
case "news": case "news":
$forum->name = get_string("namenews", "forum"); $forum->name = get_string("namenews", "forum");
Expand Down

0 comments on commit 09a8ba4

Please sign in to comment.