get_results(" SELECT * FROM $wpdb->links WHERE link_id IN (".implode(",",$_POST['link_ids']).") "); if (is_array($targets)) : foreach ($targets as $target) : $update_set[] = $target->link_rss; endforeach; else : // This should never happen FeedWordPress::critical_bug('fwp_syndication_manage_page::targets', $targets, __LINE__); endif; elseif (isset($_POST['update_uri'])) : $update_set[] = $_POST['update_uri']; endif; shuffle($update_set); // randomize order for load balancing purposes... if ($fwp_update_invoke != 'get' and count($update_set) > 0) : // Only do things with side-effects for HTTP POST or command line $feedwordpress =& new FeedWordPress; add_action('feedwordpress_check_feed', 'update_feeds_mention'); add_action('feedwordpress_check_feed_complete', 'update_feeds_finish', 10, 3); $crash_dt = (int) get_option('feedwordpress_update_time_limit'); if ($crash_dt > 0) : $crash_ts = time() + $crash_dt; else : $crash_ts = NULL; endif; if (fwp_test_wp_version(FWP_SCHEMA_25)) : echo "
Further updates postponed: update time limit of ".$crash_dt." second".(($crash_dt==1)?"":"s")." exceeded.
Error: There was a problem updating $uri
Update complete.".implode(' and', $mesg)."
"; echo "\n"; flush(); endif; echo "Check currently scheduled feeds for new and updated posts.