From: moodler Date: Sun, 14 Sep 2003 16:43:10 +0000 (+0000) Subject: Some tidying up of the editing icons X-Git-Url: http://git.mjollnir.org/gw?a=commitdiff_plain;h=bf1241ad96d1329962cb4427f8a1155f99489f22;p=moodle.git Some tidying up of the editing icons --- diff --git a/course/lib.php b/course/lib.php index 3af0aa7bdf..67dab8fe9c 100644 --- a/course/lib.php +++ b/course/lib.php @@ -1556,28 +1556,29 @@ function make_editing_buttons($moduleid, $absolute=false, $visible=true, $movese if ($moveselect) { $move = "move\" href=\"$path/mod.php?copy=$moduleid\"> "; + " src=\"$pixpath/t/move.gif\" hspace=\"2\" height=\"11\" width=\"11\" border=\"0\">"; } else { $move = "moveup\" href=\"$path/mod.php?id=$moduleid&move=-1\"> ". + " src=\"$pixpath/t/up.gif\" hspace=\"2\" height=11 width=11 border=0>". "movedown\" href=\"$path/mod.php?id=$moduleid&move=1\"> "; + " src=\"$pixpath/t/down.gif\" hspace=\"2\" height=11 width=11 border=0>"; } $leftright = ""; if ($indent > 0) { $leftright .= "moveleft\" href=\"$path/mod.php?id=$moduleid&indent=-1\"> "; + " src=\"$pixpath/t/left.gif\" hspace=\"2\" height=11 width=11 border=0>"; } if ($indent >= 0) { $leftright .= "moveright\" href=\"$path/mod.php?id=$moduleid&indent=1\"> "; + " src=\"$pixpath/t/right.gif\" hspace=\"2\" height=11 width=11 border=0>"; } - return "$leftrightdelete\" href=\"$path/mod.php?delete=$moduleid\"> $move". + return "$leftright$move". "update\" href=\"$path/mod.php?update=$moduleid\"> $hideshow"; + " src=\"$pixpath/t/edit.gif\" hspace=\"2\" height=11 width=11 border=0>". + "delete\" href=\"$path/mod.php?delete=$moduleid\">$hideshow"; } ?>