mirror of
https://github.com/WordPress/WordPress.git
synced 2024-11-04 18:01:42 +01:00
7f29687a55
git-svn-id: http://core.svn.wordpress.org/branches/4.3@33847 1a063a9b-81f0-0310-95a4-ce76da25c4cd
13 lines
320 B
PHP
13 lines
320 B
PHP
<?php
|
|
/**
|
|
* Comment Moderation Administration Screen.
|
|
*
|
|
* Redirects to edit-comments.php?comment_status=moderated.
|
|
*
|
|
* @package WordPress
|
|
* @subpackage Administration
|
|
*/
|
|
require_once( dirname( dirname( __FILE__ ) ) . '/wp-load.php' );
|
|
wp_redirect( admin_url('edit-comments.php?comment_status=moderated') );
|
|
exit;
|