Changeset 4656 for trunk/wp-includes/bookmark-template.php
- Timestamp:
- 12/21/2006 10:10:04 AM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/bookmark-template.php
r4535 r4656 102 102 $rel = ' rel="' . $rel . '"'; 103 103 104 $desc = wp_specialchars($row->link_description, ENT_QUOTES);105 $name = wp_specialchars($row->link_name, ENT_QUOTES);104 $desc = attribute_escape($row->link_description); 105 $name = attribute_escape($row->link_name); 106 106 $title = $desc; 107 107 … … 267 267 $rel = ' rel="' . $rel . '"'; 268 268 269 $desc = wp_specialchars($bookmark->link_description, ENT_QUOTES);270 $name = wp_specialchars($bookmark->link_name, ENT_QUOTES);269 $desc = attribute_escape($bookmark->link_description); 270 $name = attribute_escape($bookmark->link_name); 271 271 $title = $desc; 272 272
Note: See TracChangeset
for help on using the changeset viewer.