Remove the old wp_auto_updates_maybe_update cron event. Schedule the new wp_maybe_auto_update event at 7 a.m. and 7 p.m. in the site's timezone.

see #27704.

Built from https://develop.svn.wordpress.org/trunk@25825


git-svn-id: http://core.svn.wordpress.org/trunk@25825 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Andrew Nacin
2013-10-24 22:53:14 +00:00
parent 0dbec8fa31
commit 8ae8e01b67
127 changed files with 1451 additions and 2134 deletions
+7 -7
View File
@@ -42,14 +42,14 @@ header('Content-Type: text/xml; charset=' . get_option('blog_charset'), true);
<api name="Movable Type" blogID="1" preferred="false" apiLink="<?php echo site_url('xmlrpc.php', 'rpc') ?>" />
<api name="MetaWeblog" blogID="1" preferred="false" apiLink="<?php echo site_url('xmlrpc.php', 'rpc') ?>" />
<api name="Blogger" blogID="1" preferred="false" apiLink="<?php echo site_url('xmlrpc.php', 'rpc') ?>" />
<?php
/**
<?php
/**
* Add additional APIs to the Really Simple Discovery (RSD) endpoint.
*
* @see http://cyber.law.harvard.edu/blogs/gems/tech/rsd.html
* @since 3.5.0
*/
do_action( 'xmlrpc_rsd_apis' );
*/
do_action( 'xmlrpc_rsd_apis' );
?>
</apis>
</service>
@@ -69,12 +69,12 @@ include_once(ABSPATH . WPINC . '/class-wp-xmlrpc-server.php');
*/
$post_default_title = "";
/**
/**
* Filter the class used for handling XML-RPC requests.
*
*
* @since 3.1.0
* @param string The name of the XML-RPC server class.
*/
*/
$wp_xmlrpc_server_class = apply_filters( 'wp_xmlrpc_server_class', 'wp_xmlrpc_server' );
$wp_xmlrpc_server = new $wp_xmlrpc_server_class;