Make WordPress Core


Ignore:
Timestamp:
09/11/2012 08:11:39 PM (12 years ago)
Author:
nacin
Message:

Remove AtomPub from core.

DB version is bumped to generate the new wp-app rewrite rule and remove the old enable_app option.

props wonderboymusic.
fixes #21509.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-includes/post.php

    r21792 r21818  
    46714671 * @access private
    46724672 * @uses $wpdb
    4673  * @uses XMLRPC_REQUEST and APP_REQUEST constants.
     4673 * @uses XMLRPC_REQUEST constant.
    46744674 * @uses do_action() Calls 'xmlprc_publish_post' on post ID if XMLRPC_REQUEST is defined.
    4675  * @uses do_action() Calls 'app_publish_post' on post ID if APP_REQUEST is defined.
    46764675 *
    46774676 * @param int $post_id The ID in the database table of the post being published
     
    46824681    if ( defined('XMLRPC_REQUEST') )
    46834682        do_action('xmlrpc_publish_post', $post_id);
    4684     if ( defined('APP_REQUEST') )
    4685         do_action('app_publish_post', $post_id);
    46864683
    46874684    if ( defined('WP_IMPORTING') )
Note: See TracChangeset for help on using the changeset viewer.