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

File file level phpdoc from jacobsantos. see #7037

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • 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