Changeset 10901
- Timestamp:
- 04/09/2009 01:23:10 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/includes/dashboard.php
r10810 r10901 839 839 } 840 840 841 842 /* TODO Cache check here. 841 include_once ABSPATH . WPINC . '/class-feed.php'; 843 842 foreach ( $check_urls as $check_url ) { 844 845 if ( 'HIT' !== $status) {843 $cache = new WP_Feed_Cache_Transient('', md5($check_url), ''); 844 if ( ! $cache->load() ) { 846 845 echo $loading; 847 846 return false; 848 847 } 849 848 } 850 */851 852 // Always load async until above fixed.853 echo $loading;854 return false;855 849 856 850 if ( $callback && is_callable( $callback ) ) {
Note: See TracChangeset
for help on using the changeset viewer.