Changeset 14363
- Timestamp:
- 05/03/2010 07:12:26 AM (11 years ago)
- Location:
- trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/setup-config.php
r14361 r14363 27 27 * Set this to error_reporting( E_ALL ) or error_reporting( E_ALL | E_STRICT ) for debugging 28 28 */ 29 error_reporting( E_ALL &~ E_DEPRECATED);29 error_reporting(0); 30 30 31 31 /**#@+ -
trunk/wp-includes/class-http.php
r14361 r14363 90 90 91 91 if ( is_null($working_transport) ) { 92 /*if ( true === WP_Http_ExtHttp::test($args) ) {92 if ( true === WP_Http_ExtHttp::test($args) ) { 93 93 $working_transport['exthttp'] = new WP_Http_ExtHttp(); 94 94 $blocking_transport[] = &$working_transport['exthttp']; … … 102 102 $working_transport['fopen'] = new WP_Http_Fopen(); 103 103 $blocking_transport[] = &$working_transport['fopen']; 104 } else */if ( true === WP_Http_Fsockopen::test($args) ) {104 } else if ( true === WP_Http_Fsockopen::test($args) ) { 105 105 $working_transport['fsockopen'] = new WP_Http_Fsockopen(); 106 106 $blocking_transport[] = &$working_transport['fsockopen'];
Note: See TracChangeset
for help on using the changeset viewer.