Skip to content

Commit

Permalink
Fix the up down icons again
Browse files Browse the repository at this point in the history
  • Loading branch information
moodler committed Jun 10, 2003
1 parent 02fa0aa commit 25cd6a0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions course/topics.php
Expand Up @@ -227,12 +227,12 @@

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 />";
}

}
Expand Down

0 comments on commit 25cd6a0

Please sign in to comment.