Changeset 7991 for trunk/wp-comments-post.php
- Timestamp:
- 05/25/08 15:50:15 (6 months ago)
- Files:
-
- trunk/wp-comments-post.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/wp-comments-post.php
r7971 r7991 1 1 <?php 2 /** 3 * Handles Comment Post to WordPress and prevents duplicate comment posting. 4 * 5 * @package @WordPress 6 */ 7 2 8 if ( 'POST' != $_SERVER['REQUEST_METHOD'] ) { 3 9 header('Allow: POST'); … … 6 12 exit; 7 13 } 14 15 /** Sets up the WordPress Environment. */ 8 16 require( dirname(__FILE__) . '/wp-load.php' ); 9 17
