Changeset 10939
- Timestamp:
- 04/15/2009 07:55:41 PM (17 years ago)
- Location:
- trunk
- Files:
-
- 5 edited
-
wp-admin/gears-manifest.php (modified) (1 diff)
-
wp-admin/includes/update.php (modified) (1 diff)
-
wp-admin/load-scripts.php (modified) (1 diff)
-
wp-admin/load-styles.php (modified) (1 diff)
-
wp-includes/update.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/gears-manifest.php
r10871 r10939 6 6 * @subpackage Administration 7 7 */ 8 9 /** 10 * Disable error reporting 11 * 12 * Set this to error_reporting( E_ALL ) or error_reporting( E_ALL | E_STRICT ) for debugging 13 */ 14 error_reporting(0); 8 15 9 16 /** Set ABSPATH for execution */ -
trunk/wp-admin/includes/update.php
r10649 r10939 37 37 if ( empty($from_api) ) 38 38 return false; 39 if ( !is _array( $from_api->updates ) ) return false;39 if ( !isset( $from_api->updates ) || !is_array( $from_api->updates ) ) return false; 40 40 $updates = $from_api->updates; 41 41 if ( !is_array( $updates ) ) return false; -
trunk/wp-admin/load-scripts.php
r10871 r10939 1 1 <?php 2 3 /** 4 * Disable error reporting 5 * 6 * Set this to error_reporting( E_ALL ) or error_reporting( E_ALL | E_STRICT ) for debugging 7 */ 8 error_reporting(0); 2 9 3 10 /** Set ABSPATH for execution */ -
trunk/wp-admin/load-styles.php
r10871 r10939 1 1 <?php 2 3 /** 4 * Disable error reporting 5 * 6 * Set this to error_reporting( E_ALL ) or error_reporting( E_ALL | E_STRICT ) for debugging 7 */ 8 error_reporting(0); 2 9 3 10 /** Set ABSPATH for execution */ -
trunk/wp-includes/update.php
r10772 r10939 244 244 if ( isset( $current->last_checked ) && 245 245 43200 > ( time() - $current->last_checked ) && 246 isset( $current->version_checked ) && 246 247 $current->version_checked == $wp_version ) 247 248 return;
Note: See TracChangeset
for help on using the changeset viewer.