Make WordPress Core


Ignore:
Timestamp:
06/24/2006 01:20:01 AM (18 years ago)
Author:
ryan
Message:

js_escape() in onclicks. fixes #2851

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/2.0/wp-includes/functions-formatting.php

    r3856 r3906  
    10201020function js_escape($text) {
    10211021    $text = wp_specialchars($text, 'double');
    1022     return preg_replace("/\r?\n/", "\\n", addslashes($text));   
     1022    $text = str_replace(''', "'", $text);
     1023    return preg_replace("/\r?\n/", "\\n", addslashes($text));
    10231024}
    10241025?>
Note: See TracChangeset for help on using the changeset viewer.