Ticket #13452: 13452.diff
File 13452.diff, 1.6 KB (added by , 13 years ago) |
---|
-
wp-includes/functions.php
572 572 * Build URL query based on an associative and, or indexed array. 573 573 * 574 574 * This is a convenient function for easily building url queries. It sets the 575 * separator to '&' and uses _http_build_query() function.575 * separator to '&' and uses http_build_query() function. 576 576 * 577 * @see _http_build_query() Used to build the query577 * @see http_build_query() Used to build the query 578 578 * @link http://us2.php.net/manual/en/function.http-build-query.php more on what 579 579 * http_build_query() does. 580 580 * … … 584 584 * @return string URL encoded string 585 585 */ 586 586 function build_query( $data ) { 587 return _http_build_query( $data, null, '&', '', false );587 return http_build_query( $data, null, '&', '', false ); 588 588 } 589 589 590 590 // from php.net (modified by Mark Jaquith to behave like the native PHP5 function) … … 1437 1437 /** 1438 1438 * Determine if a directory is writable. 1439 1439 * 1440 * This function is used to work around certain ACL issues 1440 * This function is used to work around certain ACL issues 1441 1441 * in PHP primarily affecting Windows Servers. 1442 1442 * 1443 1443 * @see win_is_writable() … … 1457 1457 /** 1458 1458 * Workaround for Windows bug in is_writable() function 1459 1459 * 1460 * PHP has issues with Windows ACL's for determine if a 1460 * PHP has issues with Windows ACL's for determine if a 1461 1461 * directory is writable or not, this works around them by 1462 1462 * checking the ability to open files rather than relying 1463 1463 * upon PHP to interprate the OS ACL.