Show
Ignore:
Timestamp:
06/13/08 17:21:00 (6 months ago)
Author:
donncha
Message:

WP Merge with revision 8075

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/wp-mail.php

    r1218 r1328  
    11<?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. */ 
     10require(dirname(__FILE__) . '/wp-load.php'); 
     11 
     12/** Get the POP3 class for which to access the mailbox. */ 
    413require_once(ABSPATH.WPINC.'/class-pop3.php'); 
    514 
     15// WTF is this? Use constants instead. 
    616error_reporting(2037); 
    717