Changeset 18917 for trunk/wp-admin/includes/media.php
- Timestamp:
- 10/07/2011 04:59:33 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/includes/media.php
r18902 r18917 1994 1994 <p class="hide-if-no-js"><label> 1995 1995 <input name="image_resize" type="checkbox" id="image_resize" value="true"<?php echo $checked; ?> /> 1996 <?php _e('Scale images to match the large size selected in'); ?> <a href="options-media.php" target="_blank"><?php _e('image options'); ?></a> <?php printf( __('(%1$d × %2$d).'), (int) get_option( 'large_size_w' ), (int) get_option( 'large_size_h' ) ); ?> 1996 <?php 1997 if ( current_user_can( 'manage_options' ) ) 1998 printf( __( 'Scale images to match the large size selected in %1$simage options%2$s (%3$d × %4$d).' ), '<a href="' . admin_url( 'options-media.php' ) . '" target="_blank">', '</a>', (int) get_option( 'large_size_w' ), (int) get_option( 'large_size_h' ) ); 1999 else 2000 printf( __( 'Scale images to match the large size selected in %1$simage options%2$s (%3$d × %4$d).' ), '', '', (int) get_option( 'large_size_w' ), (int) get_option( 'large_size_h' ) ); 2001 ?> 1997 2002 </label></p> 1998 2003 <?php
Note: See TracChangeset
for help on using the changeset viewer.