Make WordPress Core


Ignore:
Timestamp:
07/17/2014 09:13:53 AM (11 years ago)
Author:
DrewAPicture
Message:

Fix syntax for single- and multi-line comments in wp-admin-directory files.

See #28931.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-admin/includes/dashboard.php

    r29170 r29206  
    532532    $actions_string = '';
    533533    if ( current_user_can( 'edit_comment', $comment->comment_ID ) ) {
    534         // preorder it: Approve | Reply | Edit | Spam | Trash
     534        // Pre-order it: Approve | Reply | Edit | Spam | Trash.
    535535        $actions = array(
    536536            'approve' => '', 'unapprove' => '',
     
    899899        $widget_options[$widget_id] = wp_widget_rss_process( $_POST['widget-rss'][$number] );
    900900        $widget_options[$widget_id]['number'] = $number;
    901         // title is optional. If black, fill it if possible
     901
     902        // Title is optional. If black, fill it if possible.
    902903        if ( !$widget_options[$widget_id]['title'] && isset($_POST['widget-rss'][$number]['title']) ) {
    903904            $rss = fetch_feed($widget_options[$widget_id]['url']);
Note: See TracChangeset for help on using the changeset viewer.