commit | 37fb01baec92a3e7898380923712e0c48b21107a | [log] [tgz] |
---|---|---|
author | Derek Allard <derek.allard@ellislab.com> | Thu Mar 06 13:01:47 2008 +0000 |
committer | Derek Allard <derek.allard@ellislab.com> | Thu Mar 06 13:01:47 2008 +0000 |
tree | 2aa8b436935e0edf0a9df3ceacd49c392910296c | |
parent | 4acd41aaa0e70577ab179a3a81d485ac2ab27523 [diff] [blame] |
Modified img() in the HTML Helper to remove an unneeded space. Modified anchor() in the URL helper to convert entities in the title attribute.
diff --git a/system/helpers/html_helper.php b/system/helpers/html_helper.php index 0c88450..4684d8e 100644 --- a/system/helpers/html_helper.php +++ b/system/helpers/html_helper.php
@@ -199,7 +199,7 @@ $src = array('src' => $src); } - $img = '<img '; + $img = '<img'; foreach ($src as $k=>$v) {