Changeset 14361
- Timestamp:
- 05/03/2010 06:28:05 AM (16 years ago)
- Location:
- trunk
- Files:
-
- 3 edited
-
wp-admin/setup-config.php (modified) (1 diff)
-
wp-includes/class-http.php (modified) (2 diffs)
-
wp-includes/functions.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/setup-config.php
r14081 r14361 27 27 * Set this to error_reporting( E_ALL ) or error_reporting( E_ALL | E_STRICT ) for debugging 28 28 */ 29 error_reporting( 0);29 error_reporting(E_ALL &~ E_DEPRECATED); 30 30 31 31 /**#@+ -
trunk/wp-includes/class-http.php
r14134 r14361 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']; -
trunk/wp-includes/functions.php
r14360 r14361 315 315 $option = trim($option); 316 316 if ( empty($option) ) 317 return false; 318 319 if ( defined( 'WP_SETUP_CONFIG' ) ) 317 320 return false; 318 321
Note: See TracChangeset
for help on using the changeset viewer.