From 3034bd23efd8de2fbec86e8e2164045e0d52eafd Mon Sep 17 00:00:00 2001 From: nfreear Date: Fri, 10 Mar 2006 16:46:19 +0000 Subject: [PATCH] Accessibility: fix, replace with (Martin D post 10/3, OU-Bugz: 717) --- blocks/search_forums/block_search_forums.php | 2 +- lib/weblib.php | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) 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"; -- 2.39.5