Make WordPress Core


Ignore:
Timestamp:
05/18/2006 01:10:57 AM (20 years ago)
Author:
ryan
Message:

Backport js_escape()

File:
1 edited

Legend:

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

    r3747 r3781  
    10161016}
    10171017
     1018// Escape single quotes, specialchar double quotes, and fix line endings.
     1019function js_escape($text) {
     1020        $text = wp_specialchars($text, 'double');
     1021        return preg_replace("/\r?\n/", "\\n", addslashes($text));       
     1022}
    10181023?>
Note: See TracChangeset for help on using the changeset viewer.