Make WordPress Core


Ignore:
Timestamp:
06/18/2004 12:22:09 AM (22 years ago)
Author:
rboren
Message:

stripslashes() elimination. Remove extra slashes during upgrade. Bugs 0000059 and 0000018

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-includes/template-functions-links.php

    r1395 r1435  
    256256            $string = '<a href="'.get_permalink($lastpost->ID).'">'.$previous;
    257257            if ($title == 'yes') {
    258                 $string .= wptexturize(stripslashes($lastpost->post_title));
     258                $string .= wptexturize($lastpost->post_title);
    259259            }
    260260            $string .= '</a>';
     
    294294            $string = '<a href="'.get_permalink($nextpost->ID).'">'.$next;
    295295            if ($title=='yes') {
    296                 $string .= wptexturize(stripslashes($nextpost->post_title));
     296                $string .= wptexturize($nextpost->post_title);
    297297            }
    298298            $string .= '</a>';
Note: See TracChangeset for help on using the changeset viewer.