Make WordPress Core

Changeset 7991 for trunk/wp-mail.php


Ignore:
Timestamp:
05/25/2008 03:50:15 PM (18 years ago)
Author:
ryan
Message:

File file level phpdoc from jacobsantos. see #7037

File:
1 edited

Legend:

Unmodified
Added
Removed
  • 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
Note: See TracChangeset for help on using the changeset viewer.