summaryrefslogtreecommitdiffstats
path: root/system/helpers/url_helper.php
diff options
context:
space:
mode:
authorDerek Jones <derek.jones@ellislab.com>2008-05-07 19:31:03 +0200
committerDerek Jones <derek.jones@ellislab.com>2008-05-07 19:31:03 +0200
commitcd6f9cdbbcdd550e73beccb906fe7ee78714a3f1 (patch)
tree810c21242bb231182adc149fcbbf7d911bbfbebc /system/helpers/url_helper.php
parent62a90205c4ace42df775dbe1354c41340e89c92c (diff)
removed default title= attribute from anchor() in URL Helper
Diffstat (limited to 'system/helpers/url_helper.php')
-rw-r--r--system/helpers/url_helper.php6
1 files changed, 1 insertions, 5 deletions
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);
}