Make WordPress Core

Changeset 4593


Ignore:
Timestamp:
12/03/2006 09:55:42 PM (18 years ago)
Author:
matt
Message:

MSN Spaces seems to like exclamation points in their URLs, they must be pandering to Yahoo! ;)

File:
1 edited

Legend:

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

    r4565 r4593  
    10581058function clean_url( $url ) {
    10591059    if ('' == $url) return $url;
    1060     $url = preg_replace('|[^a-z0-9-~+_.?#=&;,/:%]|i', '', $url);
     1060    $url = preg_replace('|[^a-z0-9-~+_.?#=!&;,/:%]|i', '', $url);
    10611061    $strip = array('%0d', '%0a');
    10621062    $url = str_replace($strip, '', $url);
Note: See TracChangeset for help on using the changeset viewer.