Make WordPress Core


Ignore:
Timestamp:
08/11/2008 08:26:31 PM (17 years ago)
Author:
ryan
Message:

WP-Admin File Level Inline Documentation from santosj. see #7496

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-admin/comment.php

    r8004 r8618  
    11<?php
     2/**
     3 * Comment Management Panel
     4 *
     5 * @package WordPress
     6 * @subpackage Administration
     7 */
     8
     9/** Load WordPress Bootstrap */
    210require_once('admin.php');
    311
     
    1018    $action = 'deletecomment';
    1119
    12 function comment_footer_die( $msg ) {  // $msg is assumed to contain HTML and be sanitized
     20/**
     21 * Display error message at bottom of comments.
     22 *
     23 * @param string $msg Error Message. Assumed to contain HTML and be sanitized.
     24 */
     25function comment_footer_die( $msg ) {  //
    1326    echo "<div class='wrap'><p>$msg</p></div>";
    1427    include('admin-footer.php');
Note: See TracChangeset for help on using the changeset viewer.