From: nfreear Date: Fri, 10 Mar 2006 16:46:19 +0000 (+0000) Subject: Accessibility: fix, replace with (Martin D post 10/3, OU-Bugz: 717) X-Git-Url: http://git.mjollnir.org/gw?a=commitdiff_plain;h=3034bd23efd8de2fbec86e8e2164045e0d52eafd;p=moodle.git Accessibility: fix, replace with (Martin D post 10/3, OU-Bugz: 717) --- diff --git a/blocks/search_forums/block_search_forums.php b/blocks/search_forums/block_search_forums.php index 360c11ed7b..30a39e1c8f 100644 --- a/blocks/search_forums/block_search_forums.php +++ b/blocks/search_forums/block_search_forums.php @@ -31,7 +31,7 @@ class block_search_forums extends block_base { $this->content->text .= '
'; $this->content->text .= ''; // course $this->content->text .= ''; - $this->content->text .= '
'; + $this->content->text .= '
'; $this->content->text .= ''.$advancedsearch.''; $this->content->text .= helpbutton('search', $advancedsearch, 'moodle', true, false, '', true); $this->content->text .= '
'; diff --git a/lib/weblib.php b/lib/weblib.php index efa9d907f9..a97ca4b5f0 100644 --- a/lib/weblib.php +++ b/lib/weblib.php @@ -2399,7 +2399,7 @@ function print_navigation ($navigation) { if ($navigation) { //Accessibility: breadcrumb links now in a list, » replaced with image. $nav_text = get_string('youarehere','access'); - echo ''.$nav_text.':
    '; + echo ''.$nav_text.':
      '; if (! $site = get_site()) { $site->shortname = get_string('home'); } @@ -4340,7 +4340,7 @@ function print_side_block($heading='', $content='', $list=NULL, $icons=NULL, $fo foreach ($list as $key => $string) { echo '
    • '; if ($icons) { - echo ''. $icons[$key] .''; + echo ''. $icons[$key] .''; } echo ''. $string .''; echo "
    • \n";