Changeset 3713

Show
Ignore:
Timestamp:
04/18/06 04:58:38 (3 years ago)
Author:
ryan
Message:

Move clean_url() to functions-formatting.php. #2525

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/wp-includes/comment-functions.php

    r3662 r3713  
    229229    do_action('wp_set_comment_status', $comment_id, 'delete'); 
    230230    return true; 
    231 } 
    232  
    233 function clean_url( $url ) { 
    234     if ('' == $url) return $url; 
    235     $url = preg_replace('|[^a-z0-9-~+_.?#=&;,/:]|i', '', $url); 
    236     $url = str_replace(';//', '://', $url); 
    237     $url = (!strstr($url, '://')) ? 'http://'.$url : $url; 
    238     $url = preg_replace('/&([^#])(?![a-z]{2,8};)/', '&$1', $url); 
    239     return $url; 
    240231} 
    241232 
  • trunk/wp-includes/functions-formatting.php

    r3710 r3713  
    10241024} 
    10251025 
     1026function clean_url( $url ) { 
     1027    if ('' == $url) return $url; 
     1028    $url = preg_replace('|[^a-z0-9-~+_.?#=&;,/:]|i', '', $url); 
     1029    $url = str_replace(';//', '://', $url); 
     1030    $url = (!strstr($url, '://')) ? 'http://'.$url : $url; 
     1031    $url = preg_replace('/&([^#])(?![a-z]{2,8};)/', '&$1', $url); 
     1032    return $url; 
     1033} 
     1034 
    10261035?>