From 37fb01baec92a3e7898380923712e0c48b21107a Mon Sep 17 00:00:00 2001 From: Derek Allard Date: Thu, 6 Mar 2008 13:01:47 +0000 Subject: Modified img() in the HTML Helper to remove an unneeded space. Modified anchor() in the URL helper to convert entities in the title attribute. --- system/helpers/html_helper.php | 2 +- system/helpers/url_helper.php | 2 +- user_guide/changelog.html | 43 +++++++++++++++++++++++++----------------- 3 files changed, 28 insertions(+), 19 deletions(-) diff --git a/system/helpers/html_helper.php b/system/helpers/html_helper.php index 0c884502f..4684d8ea8 100644 --- a/system/helpers/html_helper.php +++ b/system/helpers/html_helper.php @@ -199,7 +199,7 @@ if (! function_exists('img')) $src = array('src' => $src); } - $img = '$v) { diff --git a/system/helpers/url_helper.php b/system/helpers/url_helper.php index ad71caa45..bd94b390c 100644 --- a/system/helpers/url_helper.php +++ b/system/helpers/url_helper.php @@ -119,7 +119,7 @@ if (! function_exists('anchor')) if ($attributes == '') { - $attributes = ' title="'.$title.'"'; + $attributes = ' title="'.htmlentities($title).'"'; } else { diff --git a/user_guide/changelog.html b/user_guide/changelog.html index c8c74f1ff..f80e7b99b 100644 --- a/user_guide/changelog.html +++ b/user_guide/changelog.html @@ -57,51 +57,60 @@ Change Log

Change Log

-

Version 1.6.2

Release Date: not currently released

+

Bugfixes for 1.6.2

+

Version 1.6.1

Release Date: February 12, 2008

- @@ -110,12 +119,12 @@ Change Log