Changeset 6008 for trunk/wp-includes/functions.php
- Timestamp:
- 09/02/2007 05:49:54 AM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/functions.php
r6005 r6008 607 607 } 608 608 609 $uri = str_replace('&', '&', $uri);610 611 609 if ( $frag = strstr($uri, '#') ) 612 610 $uri = substr($uri, 0, -strlen($frag)); … … 639 637 640 638 wp_parse_str($query, $qs); 641 $qs = urlencode_deep($qs);642 639 if ( is_array(func_get_arg(0)) ) { 643 640 $kayvees = func_get_arg(0); … … 854 851 855 852 function wp_nonce_url($actionurl, $action = -1) { 853 $actionurl = str_replace('&', '&', $actionurl); 856 854 return wp_specialchars(add_query_arg('_wpnonce', wp_create_nonce($action), $actionurl)); 857 855 }
Note: See TracChangeset
for help on using the changeset viewer.