Make WordPress Core


Ignore:
Timestamp:
12/14/2011 05:36:38 PM (13 years ago)
Author:
ryan
Message:

Remove extraneous spaces. Props kenan3008, dimadin. fixes #19501 #19433

File:
1 edited

Legend:

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

    r19593 r19596  
    8787        $update = true;
    8888        $widget_options['dashboard_primary'] = array(
    89             'link' => apply_filters( 'dashboard_primary_link',  __( 'http://wordpress.org/news/' ) ),
    90             'url' => apply_filters( 'dashboard_primary_feed',  __( 'http://wordpress.org/news/feed/' ) ),
     89            'link' => apply_filters( 'dashboard_primary_link', __( 'http://wordpress.org/news/' ) ),
     90            'url' => apply_filters( 'dashboard_primary_feed', __( 'http://wordpress.org/news/feed/' ) ),
    9191            'title' => apply_filters( 'dashboard_primary_title', __( 'WordPress Blog' ) ),
    9292            'items' => 2,
     
    102102        $update = true;
    103103        $widget_options['dashboard_secondary'] = array(
    104             'link' => apply_filters( 'dashboard_secondary_link',  __( 'http://planet.wordpress.org/' ) ),
    105             'url' => apply_filters( 'dashboard_secondary_feed',  __( 'http://planet.wordpress.org/feed/' ) ),
     104            'link' => apply_filters( 'dashboard_secondary_link', __( 'http://planet.wordpress.org/' ) ),
     105            'url' => apply_filters( 'dashboard_secondary_feed', __( 'http://planet.wordpress.org/feed/' ) ),
    106106            'title' => apply_filters( 'dashboard_secondary_title', __( 'Other WordPress News' ) ),
    107107            'items' => 5,
     
    701701        $actions['edit'] = "<a href='comment.php?action=editcomment&amp;c={$comment->comment_ID}' title='" . esc_attr__('Edit comment') . "'>". __('Edit') . '</a>';
    702702        $actions['reply'] = '<a onclick="commentReply.open(\''.$comment->comment_ID.'\',\''.$comment->comment_post_ID.'\');return false;" class="vim-r hide-if-no-js" title="'.esc_attr__('Reply to this comment').'" href="#">' . __('Reply') . '</a>';
    703         $actions['spam'] = "<a href='$spam_url' class='delete:the-comment-list:comment-$comment->comment_ID::spam=1 vim-s vim-destructive' title='" . esc_attr__( 'Mark this comment as spam' ) . "'>" . /* translators: mark as spam link */  _x( 'Spam', 'verb' ) . '</a>';
     703        $actions['spam'] = "<a href='$spam_url' class='delete:the-comment-list:comment-$comment->comment_ID::spam=1 vim-s vim-destructive' title='" . esc_attr__( 'Mark this comment as spam' ) . "'>" . /* translators: mark as spam link */ _x( 'Spam', 'verb' ) . '</a>';
    704704        if ( !EMPTY_TRASH_DAYS )
    705705            $actions['delete'] = "<a href='$delete_url' class='delete:the-comment-list:comment-$comment->comment_ID::trash=1 delete vim-d vim-destructive'>" . __('Delete Permanently') . '</a>';
     
    12911291
    12921292    <div class="welcome-panel-content">
    1293     <h3><?php _e( 'Welcome to your new WordPress site! ' ); ?></h3>
     1293    <h3><?php _e( 'Welcome to your new WordPress site!' ); ?></h3>
    12941294    <p class="about-description"><?php _e( 'If you need help getting started, check out our documentation on <a href="http://codex.wordpress.org/First_Steps_With_WordPress">First Steps with WordPress</a>. If you&#8217;d rather dive right in, here are a few things most people do first when they set up a new WordPress site. If you need help, use the Help tabs in the upper right corner to get information on how to use your current screen and where to go for more assistance.' ); ?></p>
    12951295    <div class="welcome-panel-column-container">
Note: See TracChangeset for help on using the changeset viewer.