]> git.mjollnir.org Git - moodle.git/commitdiff
Fix the up down icons again
authormoodler <moodler>
Tue, 10 Jun 2003 15:51:23 +0000 (15:51 +0000)
committermoodler <moodler>
Tue, 10 Jun 2003 15:51:23 +0000 (15:51 +0000)
course/topics.php

index fff056cd562de59f286dfc97b2c4293236aa4830..bf76423117ca90a4c8758915e9df3f815c73c481 100644 (file)
 
             if ($section > 1) {                       // Add a arrow to move section up
                 echo "<a href=\"view.php?id=$course->id&section=$section&move=-1\" title=\"$strmoveup\">".
-                     "<img src=\"$pixpath/i/up.gif\" vspace=3 height=11 width=11 border=0></a><br />";
+                     "<img src=\"$pixpath/t/up.gif\" vspace=3 height=11 width=11 border=0></a><br />";
             }
 
             if ($section < $course->numsections) {    // Add a arrow to move section down
                 echo "<a href=\"view.php?id=$course->id&section=$section&move=1\" title=\"$strmovedown\">".
-                     "<img src=\"$pixpath/i/down.gif\" vspace=3 height=11 width=11 border=0></a><br />";
+                     "<img src=\"$pixpath/t/down.gif\" vspace=3 height=11 width=11 border=0></a><br />";
             }
 
         }