From b2603953be306269e67c06d4bdc42fad50aa685c Mon Sep 17 00:00:00 2001 From: toyomoyo Date: Tue, 19 Dec 2006 07:19:13 +0000 Subject: [PATCH] MDL-7861, taking out
s in title tag --- lib/tablelib.php | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/lib/tablelib.php b/lib/tablelib.php index b3276f21a5..aa7c37d2b6 100644 --- a/lib/tablelib.php +++ b/lib/tablelib.php @@ -447,10 +447,12 @@ class flexible_table { if($this->is_collapsible) { if(!empty($this->sess->collapse[$column])) { - $icon_hide = ' '.get_string('show').''; + // some headers contain < br/> tags, do not include in title + $icon_hide = ' '.get_string('show').''; } else if($this->headers[$index] !== NULL) { - $icon_hide = ' '.get_string('hide').''; + // some headers contain < br/> tags, do not include in title + $icon_hide = ' '.get_string('hide').''; } } -- 2.39.5