Make WordPress Core


Ignore:
Timestamp:
12/09/2008 06:03:31 PM (17 years ago)
Author:
ryan
Message:

Strip trailing whitespace

File:
1 edited

Legend:

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

    r10146 r10150  
    912912function get_hidden_columns($page) {
    913913    $page = str_replace('.php', '', $page);
    914     return (array) get_user_option( 'manage-' . $page . '-columns-hidden', 0, false ); 
     914    return (array) get_user_option( 'manage-' . $page . '-columns-hidden', 0, false );
    915915}
    916916
     
    10011001
    10021002<?php
    1003         endif; // authors 
     1003        endif; // authors
    10041004        $authors_dropdown = ob_get_clean();
    10051005?>
     
    13361336                $time = get_post_time('G', true, $post);
    13371337
    1338                 $time_diff = time() - $time; 
     1338                $time_diff = time() - $time;
    13391339
    13401340                if ( ( 'future' == $post->post_status) ) {
     
    23172317    $r .= wp_nonce_field( 'change-meta', '_ajax_nonce', false, false );
    23182318    $r .= "</td>";
    2319    
     2319
    23202320    $r .= "\n\t\t<td><label class='hidden' for='meta[{$entry['meta_id']}][value]'>" . __( 'Value' ) . "</label><textarea name='meta[{$entry['meta_id']}][value]' id='meta[{$entry['meta_id']}][value]' tabindex='6' rows='2' cols='30'>{$entry['meta_value']}</textarea></td>\n\t</tr>";
    23212321    return $r;
     
    23762376<tr><td colspan="2" class="submit">
    23772377<input type="submit" id="addmetasub" name="addmeta" class="add:the-list:newmeta" tabindex="9" value="<?php _e( 'Add Custom Field' ) ?>" />
    2378 <?php wp_nonce_field( 'add-meta', '_ajax_nonce', false ); ?>   
     2378<?php wp_nonce_field( 'add-meta', '_ajax_nonce', false ); ?>
    23792379</td></tr>
    23802380</tbody>
     
    30393039    </div>
    30403040    <script type="text/javascript">
    3041     /* <![CDATA[ */ 
     3041    /* <![CDATA[ */
    30423042    (function($){
    30433043        findPosts = {
     
    31343134        });
    31353135    })(jQuery);
    3136     /* ]]> */ 
     3136    /* ]]> */
    31373137    </script>
    31383138<?php
     
    31613161    $actions = array(
    31623162        'post-new.php' => array(__('New Post'), 'edit_posts'),
    3163         'edit.php?post_status=draft' => array(__('Drafts'), 'edit_posts'), 
     3163        'edit.php?post_status=draft' => array(__('Drafts'), 'edit_posts'),
    31643164        'page-new.php' => array(__('New Page'), 'edit_pages'),
    31653165        'media-new.php' => array(__('Upload'), 'upload_files'),
     
    33263326    <form id="adv-settings" action="" method="get">
    33273327    <div class="metabox-prefs">
    3328 <?php 
     3328<?php
    33293329    if ( !meta_box_prefs($screen) && isset($column_screens) ) {
    33303330        manage_columns_prefs($screen);
    3331         wp_nonce_field( 'hiddencolumns', 'hiddencolumnsnonce', false ); 
     3331        wp_nonce_field( 'hiddencolumns', 'hiddencolumnsnonce', false );
    33323332    }
    33333333?>
     
    33683368        $_wp_contextual_help['options-general'] =  __('<a href="http://codex.wordpress.org/Settings_General_SubPanel" target="_blank">General Settings</a>');
    33693369
    3370     $_wp_contextual_help = apply_filters('contextual_help_list', $_wp_contextual_help, $screen); 
     3370    $_wp_contextual_help = apply_filters('contextual_help_list', $_wp_contextual_help, $screen);
    33713371    ?>
    33723372    <div id="contextual-help-wrap" class="hidden">
Note: See TracChangeset for help on using the changeset viewer.