Changeset 11410
- Timestamp:
- 05/20/2009 05:03:19 PM (16 years ago)
- Location:
- trunk/wp-includes
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/comment.php
r11323 r11410 1325 1325 foreach ( $trackbacks as $trackback ) 1326 1326 do_trackbacks($trackback); 1327 1328 //Do Update Services/Generic Pings1329 generic_ping();1330 1327 } 1331 1328 -
trunk/wp-includes/default-filters.php
r11383 r11410 187 187 add_action('do_feed_atom', 'do_feed_atom', 10, 1); 188 188 add_action('do_pings', 'do_all_pings', 10, 1); 189 add_action('do_generic_ping', 'generic_ping', 10, 1); 189 190 add_action('do_robots', 'do_robots'); 190 191 add_action('sanitize_comment_cookies', 'sanitize_comment_cookies'); -
trunk/wp-includes/post.php
r11396 r11410 3245 3245 $wpdb->update( $wpdb->posts, array( 'guid' => get_permalink( $post->ID ) ), array( 'ID' => $post->ID ) ); 3246 3246 do_action('private_to_published', $post->ID); // Deprecated, use private_to_publish 3247 // do generic pings once per hour at most 3248 if ( !wp_next_scheduled('do_generic_ping') ) 3249 wp_schedule_single_event(time() + 3600, 'do_generic_ping'); 3247 3250 } 3248 3251
Note: See TracChangeset
for help on using the changeset viewer.