Make WordPress Core


Ignore:
Timestamp:
08/06/2009 12:40:39 AM (17 years ago)
Author:
azaozz
Message:

Notice fixes, props mrmist, see #4529

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-admin/edit-pages.php

    r11763 r11779  
    169169}
    170170if ( isset($_GET['untrashed']) && (int) $_GET['untrashed'] ) {
    171         printf( _n( 'Page removed from the trash.', '%s pages removed from the trash.', $_GET['untrashed'] ), number_format_i18n( $_GET['untrashed'] ) );
     171        printf( _n( 'Page restored from the trash.', '%s pages restored from the trash.', $_GET['untrashed'] ), number_format_i18n( $_GET['untrashed'] ) );
    172172        unset($_GET['untrashed']);
    173173}
     
    240240));
    241241
     242$is_trash = isset($_GET['post_status']) && $_GET['post_status'] == 'trash';
     243
    242244if ( $page_links ) : ?>
    243245<div class="tablenav-pages"><?php $page_links_text = sprintf( '<span class="displaying-num">' . __( 'Displaying %s&#8211;%s of %s' ) . '</span>%s',
     
    252254<select name="action">
    253255<option value="-1" selected="selected"><?php _e('Bulk Actions'); ?></option>
    254 <?php if ($_GET['post_status'] == 'trash') { ?>
     256<?php if ( $is_trash ) { ?>
    255257<option value="untrash"><?php _e('Restore'); ?></option>
    256258<option value="delete"><?php _e('Delete Permanently'); ?></option>
     
    262264<input type="submit" value="<?php esc_attr_e('Apply'); ?>" name="doaction" id="doaction" class="button-secondary action" />
    263265<?php wp_nonce_field('bulk-pages'); ?>
    264 <?php if ($_GET['post_status'] == 'trash') { ?>
     266<?php if ( $is_trash ) { ?>
    265267<input type="submit" name="delete_all" id="delete_all" value="<?php esc_attr_e('Empty Trash'); ?>" class="button-secondary apply" />
    266268<?php } ?>
     
    299301<select name="action2">
    300302<option value="-1" selected="selected"><?php _e('Bulk Actions'); ?></option>
    301 <?php if ($_GET['post_status'] == 'trash') { ?>
     303<?php if ( $is_trash ) { ?>
    302304<option value="untrash"><?php _e('Restore'); ?></option>
    303305<option value="delete"><?php _e('Delete Permanently'); ?></option>
     
    308310</select>
    309311<input type="submit" value="<?php esc_attr_e('Apply'); ?>" name="doaction2" id="doaction2" class="button-secondary action" />
    310 <?php if ($_GET['post_status'] == 'trash') { ?>
     312<?php if ( $is_trash ) { ?>
    311313<input type="submit" name="delete_all2" id="delete_all2" value="<?php esc_attr_e('Empty Trash'); ?>" class="button-secondary apply" />
    312314<?php } ?>
Note: See TracChangeset for help on using the changeset viewer.