Changes in trunk/wp-admin/edit.php [12184:12308]
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/edit.php
r12184 r12308 135 135 <div class="wrap"> 136 136 <?php screen_icon(); ?> 137 <h2><?php echo esc_html( $title ); ?> <a href="post-new.php" class="button add-new-h2"><?php e sc_html_e('Add New'); ?></a> <?php137 <h2><?php echo esc_html( $title ); ?> <a href="post-new.php" class="button add-new-h2"><?php echo esc_html_x('Add New', 'post'); ?></a> <?php 138 138 if ( isset($_GET['s']) && $_GET['s'] ) 139 139 printf( '<span class="subtitle">' . __('Search results for “%s”') . '</span>', esc_html( get_search_query() ) ); ?> … … 169 169 printf( _n( 'Post moved to the trash.', '%s posts moved to the trash.', $_GET['trashed'] ), number_format_i18n( $_GET['trashed'] ) ); 170 170 $ids = isset($_GET['ids']) ? $_GET['ids'] : 0; 171 echo ' <a href="' . esc_url( wp_nonce_url( "edit.php?doaction=undo&action=untrash&ids=$ids", "bulk-posts" ) ) . '">' . __('Undo ?') . '</a><br />';171 echo ' <a href="' . esc_url( wp_nonce_url( "edit.php?doaction=undo&action=untrash&ids=$ids", "bulk-posts" ) ) . '">' . __('Undo') . '</a><br />'; 172 172 unset($_GET['trashed']); 173 173 }
Note: See TracChangeset
for help on using the changeset viewer.