]> git.mjollnir.org Git - moodle.git/commitdiff
Removed some inline styles
authormoodler <moodler>
Tue, 25 Jan 2005 14:32:43 +0000 (14:32 +0000)
committermoodler <moodler>
Tue, 25 Jan 2005 14:32:43 +0000 (14:32 +0000)
mod/forum/lib.php

index 219a3007685e0e33dfbb6b9ea0cfd64ef15e925a..fa32a006b9c18cba776385a353883419545a8b1d 100644 (file)
@@ -2651,7 +2651,7 @@ function forum_print_posts_threaded($parent, $course, $depth, $ratings, $reply)
     if ($posts = forum_get_child_posts($parent)) {
         foreach ($posts as $post) {
 
-            echo '<div style="margin-left:20px">';
+            echo '<div class="forumpostindent">';
             if ($depth > 0) {
                 $ownpost = ($USER->id == $post->userid);
                 if (forum_print_post($post, $course, $ownpost, $reply, $link, $ratings)) {
@@ -2690,7 +2690,7 @@ function forum_print_posts_nested($parent, $course, $ratings, $reply) {
                 $ownpost = ($USER->id == $post->userid);
             }
 
-            echo '<div style="margin-left:20px">';
+            echo '<div class="forumpostindent">';
             if (forum_print_post($post, $course, $ownpost, $reply, $link, $ratings)) {
                 $ratingsmenuused = true;
             }