Changeset 11110 for trunk/wp-admin/upload.php
- Timestamp:
- 04/28/2009 06:37:51 AM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/upload.php
r11109 r11110 212 212 <label class="hidden" for="media-search-input"><?php _e( 'Search Media' ); ?>:</label> 213 213 <input type="text" id="media-search-input" name="s" value="<?php the_search_query(); ?>" /> 214 <input type="submit" value="<?php _e ( 'Search Media' ); ?>" class="button" />214 <input type="submit" value="<?php _ea( 'Search Media' ); ?>" class="button" /> 215 215 </p> 216 216 </form> … … 248 248 <?php } ?> 249 249 </select> 250 <input type="submit" value="<?php _e ('Apply'); ?>" name="doaction" id="doaction" class="button-secondary action" />250 <input type="submit" value="<?php _ea('Apply'); ?>" name="doaction" id="doaction" class="button-secondary action" /> 251 251 <?php wp_nonce_field('bulk-media'); ?> 252 252 … … 273 273 $default = ''; 274 274 275 echo "<option$default value=' $arc_row->yyear$arc_row->mmonth'>";275 echo "<option$default value='" . attr("$arc_row->yyear$arc_row->mmonth") . "'>"; 276 276 echo $wp_locale->get_month($arc_row->mmonth) . " $arc_row->yyear"; 277 277 echo "</option>\n"; … … 281 281 <?php endif; // month_count ?> 282 282 283 <input type="submit" id="post-query-submit" value="<?php _e ('Filter'); ?>" class="button-secondary" />283 <input type="submit" id="post-query-submit" value="<?php _ea('Filter'); ?>" class="button-secondary" /> 284 284 285 285 <?php } // ! is_singular ?> 286 286 287 287 <?php if ( isset($_GET['detached']) ) { ?> 288 <input type="submit" id="find_detached" name="find_detached" value="<?php _e ('Scan for lost attachments'); ?>" class="button-secondary" />288 <input type="submit" id="find_detached" name="find_detached" value="<?php _ea('Scan for lost attachments'); ?>" class="button-secondary" /> 289 289 <?php } ?> 290 290 … … 326 326 ?> 327 327 <tr id='post-<?php echo $post->ID; ?>' class='<?php echo $class; ?>' valign="top"> 328 <th scope="row" class="check-column"><input type="checkbox" name="media[]" value="<?php echo $post->ID; ?>" /></th>328 <th scope="row" class="check-column"><input type="checkbox" name="media[]" value="<?php echo attr($post->ID); ?>" /></th> 329 329 330 330 <td class="media-icon"><?php … … 404 404 <?php } ?> 405 405 </select> 406 <input type="submit" value="<?php _e ('Apply'); ?>" name="doaction2" id="doaction2" class="button-secondary action" />406 <input type="submit" value="<?php _ea('Apply'); ?>" name="doaction2" id="doaction2" class="button-secondary action" /> 407 407 </div> 408 408
Note: See TracChangeset
for help on using the changeset viewer.