phpdoc for wp-admin. See #7496 props santosj.

git-svn-id: https://develop.svn.wordpress.org/trunk@8645 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Peter Westwood
2008-08-14 06:30:38 +00:00
parent 93f3f4cdb5
commit ab17f7283c
46 changed files with 1027 additions and 167 deletions

View File

@@ -1,4 +1,12 @@
<?php
/**
* Comment Moderation Administration Panel.
*
* Redirects to edit-comments.php?comment_status=moderated.
*
* @package WordPress
* @subpackage Administration
*/
require_once('../wp-load.php');
wp_redirect('edit-comments.php?comment_status=moderated');
?>