Skip to content

Commit

Permalink
forum MDL-25909 - Fix undefined variable
Browse files Browse the repository at this point in the history
  • Loading branch information
danpoltawski committed Jan 8, 2011
1 parent 46f4c39 commit 065bee4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mod/forum/lib.php
Original file line number Diff line number Diff line change
Expand Up @@ -3155,7 +3155,7 @@ function forum_print_post($post, $discussion, $forum, &$cm, $course, $ownpost=fa
return;
}
$output .= html_writer::tag('a', '', array('id'=>'p'.$post->id));
$output .= html_writer::start_tag('div', array('class'=>'forumpost clearfix '.$forumpostclass));
$output .= html_writer::start_tag('div', array('class'=>'forumpost clearfix'));
$output .= html_writer::start_tag('div', array('class'=>'row header'));
$output .= html_writer::tag('div', '', array('class'=>'left picture')); // Picture
if ($post->parent) {
Expand Down

0 comments on commit 065bee4

Please sign in to comment.