From ca2ebad11d3014a22d3cb709a5364ef13d563f55 Mon Sep 17 00:00:00 2001 From: Andrew Nacin Date: Thu, 27 May 2010 23:45:45 +0000 Subject: [PATCH] Edit comment help text. props jane, dougwrites. see #13467. git-svn-id: https://develop.svn.wordpress.org/trunk@15014 602fd350-edb4-49c9-b593-d223f7449a82 --- wp-admin/comment.php | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/wp-admin/comment.php b/wp-admin/comment.php index 1f1553f493..36646751c3 100644 --- a/wp-admin/comment.php +++ b/wp-admin/comment.php @@ -45,6 +45,13 @@ switch( $action ) { case 'editcomment' : $title = __('Edit Comment'); + add_contextual_help( $current_screen, '

' . __( 'You can edit the information left in a comment if needed. This is often useful when you notice that a commenter has made a typographical error.' ) . '

' . + '

' . __( 'You can also moderate the comment from this screen using the Status box, where you can also change the timestamp of the comment.' ) . '

' . + '

' . __( 'For more information:' ) . '

' . + '

' . __( 'Comments Documentation' ) . '

' . + '

' . __( 'Support Forums' ) . '

' + ); + wp_enqueue_script('comment'); require_once('./admin-header.php');