Make WordPress Core


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

File file level phpdoc from jacobsantos. see #7037

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-comments-post.php

    r7971 r7991  
    11<?php
     2/**
     3 * Handles Comment Post to WordPress and prevents duplicate comment posting.
     4 *
     5 * @package @WordPress
     6 */
     7
    28if ( 'POST' != $_SERVER['REQUEST_METHOD'] ) {
    39    header('Allow: POST');
     
    612    exit;
    713}
     14
     15/** Sets up the WordPress Environment. */
    816require( dirname(__FILE__) . '/wp-load.php' );
    917
Note: See TracChangeset for help on using the changeset viewer.