diff options
Diffstat (limited to 'system/helpers/url_helper.php')
-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);
}
|