3ebb27ae3e
git-svn-id: https://develop.svn.wordpress.org/trunk@16847 602fd350-edb4-49c9-b593-d223f7449a82
14 lines
289 B
PHP
14 lines
289 B
PHP
<?php
|
|
/**
|
|
* Comment Moderation Administration Panel.
|
|
*
|
|
* Redirects to edit-comments.php?comment_status=moderated.
|
|
*
|
|
* @package WordPress
|
|
* @subpackage Administration
|
|
*/
|
|
require_once('../wp-load.php');
|
|
wp_redirect( admin_url('edit-comments.php?comment_status=moderated') );
|
|
exit;
|
|
?>
|