diff options
author | Derek Jones <derek.jones@ellislab.com> | 2008-05-07 19:31:03 +0200 |
---|---|---|
committer | Derek Jones <derek.jones@ellislab.com> | 2008-05-07 19:31:03 +0200 |
commit | cd6f9cdbbcdd550e73beccb906fe7ee78714a3f1 (patch) | |
tree | 810c21242bb231182adc149fcbbf7d911bbfbebc /system | |
parent | 62a90205c4ace42df775dbe1354c41340e89c92c (diff) |
removed default title= attribute from anchor() in URL Helper
Diffstat (limited to 'system')
-rw-r--r-- | system/helpers/url_helper.php | 6 |
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);
}
|