mirror of
https://github.com/WordPress/WordPress.git
synced 2024-11-03 09:21:03 +01:00
9cb6e158fc
git-svn-id: http://svn.automattic.com/wordpress/trunk@17748 1a063a9b-81f0-0310-95a4-ce76da25c4cd
14 lines
290 B
PHP
14 lines
290 B
PHP
<?php
|
|
/**
|
|
* Comment Moderation Administration Screen.
|
|
*
|
|
* 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;
|
|
?>
|