Changeset 6008
- Timestamp:
- 09/02/07 05:49:54 (1 year ago)
- Files:
-
- trunk/wp-includes/functions.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
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 }
