Changeset 1951 for trunk/system/helpers/html.php
- Timestamp:
- 02/06/2008 02:09:23 AM (11 months ago)
- Files:
-
- 1 modified
-
trunk/system/helpers/html.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/system/helpers/html.php
r1905 r1951 81 81 return 82 82 // Parsed URL 83 '<a href="'. $site_url.'"'83 '<a href="'.self::specialchars($site_url, FALSE).'"' 84 84 // Attributes empty? Use an empty string 85 85 .(empty($attributes) ? '' : self::attributes($attributes)).'>' … … 101 101 return 102 102 // Base URL + URI = full URL 103 '<a href="'. url::base(FALSE, $protocol).$file.'"'103 '<a href="'.self::specialchars(url::base(FALSE, $protocol).$file, FALSE).'"' 104 104 // Attributes empty? Use an empty string 105 105 .(empty($attributes) ? '' : self::attributes($attributes)).'>'
