Show
Ignore:
Timestamp:
05/25/08 15:50:15 (3 months ago)
Author:
ryan
Message:

File file level phpdoc from jacobsantos. see #7037

Files:

Legend:

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

    r7971 r7991  
    11<?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. */ 
    210require(dirname(__FILE__) . '/wp-load.php'); 
    311 
     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