From cd6f9cdbbcdd550e73beccb906fe7ee78714a3f1 Mon Sep 17 00:00:00 2001 From: Derek Jones Date: Wed, 7 May 2008 17:31:03 +0000 Subject: removed default title= attribute from anchor() in URL Helper --- system/helpers/url_helper.php | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) (limited to 'system/helpers/url_helper.php') diff --git a/system/helpers/url_helper.php b/system/helpers/url_helper.php index 02c7f3379..d702f6b87 100644 --- a/system/helpers/url_helper.php +++ b/system/helpers/url_helper.php @@ -117,11 +117,7 @@ if (! function_exists('anchor')) $title = $site_url; } - if ($attributes == '') - { - $attributes = ' title="'.htmlentities($title).'"'; - } - else + if ($attributes != '') { $attributes = _parse_attributes($attributes); } -- cgit v1.2.3-24-g4f1b