Make WordPress Core

Ticket #18900: 18900-header-bg.3.1.diff

File 18900-header-bg.3.1.diff, 2.4 KB (added by DrewAPicture, 12 years ago)

Combines with 18900.2.patch

  • wp-admin/includes/media.php

     
    21422142
    21432143                <div class="wp_attachment_image" id="media-head-<?php echo $attachment_id; ?>">
    21442144                        <p><img class="thumbnail" src="<?php echo $thumb_url[0]; ?>" style="max-width:100%" width="<?php echo $thumb_url[1]; ?>" alt="" /></p>
    2145                         <p><?php echo $image_edit_button; ?></p>
     2145                        <p class="hide-if-no-js"><?php echo $image_edit_button; ?></p>
    21462146                </div>
    21472147                <div style="display:none" class="image-editor" id="image-editor-<?php echo $attachment_id; ?>"></div>
    21482148
  • wp-admin/custom-header.php

     
    538538                $image_library_url = remove_query_arg( 'TB_iframe', $image_library_url );
    539539                $image_library_url = add_query_arg( array( 'context' => 'custom-header', 'TB_iframe' => 1 ), $image_library_url );
    540540        ?>
    541         <p>
     541        <p class="hide-if-no-js">
    542542                <label for="choose-from-library-link"><?php _e( 'Or choose an image from your media library:' ); ?></label><br />
    543543                <a id="choose-from-library-link" class="button thickbox" href="<?php echo esc_url( $image_library_url ); ?>"><?php _e( 'Choose Image' ); ?></a>
    544544        </p>
     545        <p class="hide-if-js">
     546                <strong><?php _e( 'You need Javascript to choose an image from the Media Library.' ); ?></strong>
     547        </p>
    545548        </form>
    546549</td>
    547550</tr>
  • wp-admin/custom-background.php

     
    267267                $image_library_url = remove_query_arg( 'TB_iframe', $image_library_url );
    268268                $image_library_url = add_query_arg( array( 'context' => 'custom-background', 'TB_iframe' => 1 ), $image_library_url );
    269269        ?>
    270         <p>
     270        <p class="hide-if-no-js">
    271271                <label for="choose-from-library-link"><?php _e( 'Or choose an image from your media library:' ); ?></label><br />
    272272                <a id="choose-from-library-link" class="button thickbox" href="<?php echo esc_url( $image_library_url ); ?>"><?php _e( 'Choose Image' ); ?></a>
    273273        </p>
     274        <p class="hide-if-js">
     275                <strong><?php _e( 'You need Javascript to choose an image from the Media Library.' ); ?></strong>
     276        </p>
    274277        </form>
    275278</td>
    276279</tr>