Changeset 1435 for trunk/wp-includes/template-functions-links.php
- Timestamp:
- 06/18/2004 12:22:09 AM (22 years ago)
- File:
-
- 1 edited
-
trunk/wp-includes/template-functions-links.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/template-functions-links.php
r1395 r1435 256 256 $string = '<a href="'.get_permalink($lastpost->ID).'">'.$previous; 257 257 if ($title == 'yes') { 258 $string .= wptexturize( stripslashes($lastpost->post_title));258 $string .= wptexturize($lastpost->post_title); 259 259 } 260 260 $string .= '</a>'; … … 294 294 $string = '<a href="'.get_permalink($nextpost->ID).'">'.$next; 295 295 if ($title=='yes') { 296 $string .= wptexturize( stripslashes($nextpost->post_title));296 $string .= wptexturize($nextpost->post_title); 297 297 } 298 298 $string .= '</a>';
Note: See TracChangeset
for help on using the changeset viewer.