Index: lib/weblib.php =================================================================== RCS file: /globalcvs/ou-moodle/lib/weblib.php,v retrieving revision 1.148.2.4 diff -u -r1.148.2.4 weblib.php --- lib/weblib.php 24 Apr 2008 10:07:27 -0000 1.148.2.4 +++ lib/weblib.php 30 Apr 2008 09:54:18 -0000 @@ -3695,17 +3695,17 @@ $arrow = ''.$THEME->rarrow.''; $htmltext = ''; if ($text) { - $htmltext = $text.' '; + $htmltext = ''.$text.' '; if ($accesshide) { $htmltext = get_accesshide($htmltext); } } if ($url) { - $class = ''; + $class = 'arrow_link'; if ($addclass) { - $class =" class=\"$addclass\""; + $class .= ' '.$addclass; } - return ''.$htmltext.$arrow.''; + return ''.$htmltext.$arrow.''; } return $htmltext.$arrow; } @@ -3729,17 +3729,17 @@ $arrow = ''.$THEME->larrow.''; $htmltext = ''; if ($text) { - $htmltext = ' '.$text; + $htmltext = ' '.$text.''; if ($accesshide) { $htmltext = get_accesshide($htmltext); } } if ($url) { - $class = ''; + $class = 'arrow_link'; if ($addclass) { - $class =" class=\"$addclass\""; + $class .= ' '.$addclass; } - return ''.$arrow.$htmltext.''; + return ''.$arrow.$htmltext.''; } return $arrow.$htmltext; }