Make WordPress Core

Changeset 18465


Ignore:
Timestamp:
07/25/2011 01:20:07 PM (12 years ago)
Author:
westi
Message:

Make [18456] more obvious. Fixes #16432.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-includes/formatting.php

    r18456 r18465  
    18771877function ent2ncr($text) {
    18781878
    1879     if( null !== $filtered = apply_filters( 'pre_ent2ncr', null, $text ) )
     1879    // Allow a plugin to short-circuit and override the mappings.
     1880    $filtered = apply_filters( 'pre_ent2ncr', null, $text );
     1881    if( null !== $filtered )
    18801882        return $filtered;
    18811883
Note: See TracChangeset for help on using the changeset viewer.