More generic indent tag

This commit is contained in:
moodler
2005-03-24 02:37:11 +00:00
parent a9b1b60bee
commit 7105cf8d21
+2 -2
View File
@@ -2783,7 +2783,7 @@ function forum_print_posts_threaded($parent, $courseid, $depth, $ratings, $reply
if ($posts = forum_get_child_posts($parent)) {
foreach ($posts as $post) {
echo '<div class="forumpostindent">';
echo '<div class="indent">';
if ($depth > 0) {
$ownpost = ($USER->id == $post->userid);
@@ -2837,7 +2837,7 @@ function forum_print_posts_nested($parent, $courseid, $ratings, $reply, &$user_r
if ($posts = forum_get_child_posts($parent)) {
foreach ($posts as $post) {
echo '<div class="forumpostindent">';
echo '<div class="indent">';
if (empty($USER->id)) {
$ownpost = false;
} else {