Changeset 1328 for trunk/wp-mail.php
- Timestamp:
- 06/13/08 17:21:00 (6 months ago)
- Files:
-
- trunk/wp-mail.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/wp-mail.php
r1218 r1328 1 1 <?php 2 require(dirname(__FILE__) . '/wp-config.php'); 3 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. */ 10 require(dirname(__FILE__) . '/wp-load.php'); 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
