Make WordPress Core


Ignore:
Timestamp:
03/02/2008 08:17:30 PM (17 years ago)
Author:
ryan
Message:

Remove trailing whites.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-includes/pluggable.php

    r7096 r7130  
    651651        $nonce = $_REQUEST['_ajax_nonce'] ? $_REQUEST['_ajax_nonce'] : $_REQUEST['_wpnonce'];
    652652
    653     if ( !wp_verify_nonce( $nonce, $action ) ) 
     653    if ( !wp_verify_nonce( $nonce, $action ) )
    654654        die('-1');
    655655
     
    857857    $comments_waiting = $wpdb->get_var("SELECT count(comment_ID) FROM $wpdb->comments WHERE comment_approved = '0'");
    858858
    859     switch ($comment->comment_type) 
     859    switch ($comment->comment_type)
    860860    {
    861861        case 'trackback':
     
    883883            break;
    884884    }
    885    
     885
    886886    $notify_message .= sprintf( __('Approve it: %s'),  get_option('siteurl')."/wp-admin/comment.php?action=mac&c=$comment_id" ) . "\r\n";
    887887    $notify_message .= sprintf( __('Delete it: %s'), get_option('siteurl')."/wp-admin/comment.php?action=cdc&c=$comment_id" ) . "\r\n";
    888888    $notify_message .= sprintf( __('Spam it: %s'), get_option('siteurl')."/wp-admin/comment.php?action=cdc&dt=spam&c=$comment_id" ) . "\r\n";
    889    
     889
    890890    $strCommentsPending = sprintf( __ngettext('%s comment', '%s comments', $comments_waiting), $comments_waiting );
    891891    $notify_message .= sprintf( __('Currently %s are waiting for approval. Please visit the moderation panel:'), $strCommentsPending ) . "\r\n";
Note: See TracChangeset for help on using the changeset viewer.