Make WordPress Core


Ignore:
Timestamp:
09/22/2003 10:57:41 PM (21 years ago)
Author:
mikelittle
Message:

Fixed bug with escaped quotes in the excerpt.
http://wordpress.org/support/4/623

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/b2-include/b2template.functions.php

    r374 r377  
    687687    global $HTTP_SERVER_VARS, $HTTP_COOKIE_VARS, $preview;
    688688    $output = '';
    689     $output = $post->post_excerpt;
     689    $output = stripslashes($post->post_excerpt);
    690690    if (!empty($post->post_password)) { // if there's a password
    691691        if ($HTTP_COOKIE_VARS['wp-postpass'] != $post->post_password) {  // and it doesn't match the cookie
Note: See TracChangeset for help on using the changeset viewer.