Make WordPress Core

Changeset 11910


Ignore:
Timestamp:
09/10/2009 08:05:24 PM (17 years ago)
Author:
westi
Message:

Post by Email plugins might want to use there own POP3 class so move the action earlier.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-mail.php

    r11893 r11910  
    1111require(dirname(__FILE__) . '/wp-load.php');
    1212
     13/** Allow a plugin to do a complete takeover of Post by Email **/
     14do_action('wp_mail');
     15
    1316/** Get the POP3 class with which to access the mailbox. */
    1417require_once( ABSPATH . WPINC . '/class-pop3.php' );
    15 
    16 /** Allow a plugin to do a complete takeover of Post by Email **/
    17 do_action('wp_mail');
    1818
    1919/** Only check at this interval for new messages. */
Note: See TracChangeset for help on using the changeset viewer.