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 +----- user_guide/changelog.html | 2 +- 2 files changed, 2 insertions(+), 6 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); } diff --git a/user_guide/changelog.html b/user_guide/changelog.html index 6401b9e74..95635568e 100644 --- a/user_guide/changelog.html +++ b/user_guide/changelog.html @@ -94,7 +94,7 @@ SVN Commit: not currently released

  • Changed the radio() and checkbox() functions to default to not checked by default.
  • Added the ability to include an optional HTTP Response Code in the redirect() function of the URL Helper.
  • Modified img() in the HTML Helper to remove an unneeded space (#4208).
  • -
  • Modified anchor() in the URL helper to convert entities in the title attribute (#4209).
  • +
  • Modified anchor() in the URL helper to no longer add a default title= attribute (#4209).
  • The Download helper now exits within force_download().
  • The Zip class now exits within download().
  • Added get_dir_file_info(), get_file_info(), and get_mime_by_extension() to the File Helper.
  • -- cgit v1.2.3-24-g4f1b