Changeset 7991 for trunk/wp-mail.php
- Timestamp:
- 05/25/2008 03:50:15 PM (18 years ago)
- File:
-
- 1 edited
-
trunk/wp-mail.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-mail.php
r7971 r7991 1 1 <?php 2 /** 3 * Gets the email message from the user's mailbox to add as 4 * a WordPress post. Will only run if this is setup and enabled. 5 * 6 * @package WordPress 7 */ 8 9 /** Make sure that the WordPress bootstrap has ran before continuing. */ 2 10 require(dirname(__FILE__) . '/wp-load.php'); 3 11 12 /** Get the POP3 class for which to access the mailbox. */ 4 13 require_once(ABSPATH.WPINC.'/class-pop3.php'); 5 14 15 // WTF is this? Use constants instead. 6 16 error_reporting(2037); 7 17
Note: See TracChangeset
for help on using the changeset viewer.