Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes on: wp-admin/images/wp-logo-vs-2x.png
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes on: wp-admin/images/wp-logo-2x.png
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes on: wp-admin/images/media-button-image-2x.png
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream
Property changes on: wp-admin/images/media-button-video-2x.png
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
|
|
|
|
| 462 | 462 | <?php |
| 463 | 463 | submit_button( __( 'Save Draft' ), 'button', 'draft', false, array( 'id' => 'save' ) ); |
| 464 | 464 | if ( current_user_can('publish_posts') ) { |
| 465 | | submit_button( __( 'Publish' ), 'primary', 'publish', false ); |
| | 465 | submit_button( __( 'Publish' ), 'primary regular', 'publish', false ); |
| 466 | 466 | } else { |
| 467 | 467 | echo '<br /><br />'; |
| 468 | | submit_button( __( 'Submit for Review' ), 'primary', 'review', false ); |
| | 468 | submit_button( __( 'Submit for Review' ), 'primary regular', 'review', false ); |
| 469 | 469 | } ?> |
| 470 | 470 | <img src="<?php echo esc_url( admin_url( 'images/wpspin_light.gif' ) ); ?>" alt="" id="saving" style="display:none;" /> |
| 471 | 471 | </p> |
| … |
… |
|
| 619 | 619 | if ( current_user_can('upload_files') ) { |
| 620 | 620 | ?> |
| 621 | 621 | <a id="photo_button" title="<?php esc_attr_e('Insert an Image'); ?>" href="#"> |
| | 622 | <div title="<?php esc_attr_e('Insert an Image'); ?>" class="media-button-image"></div> |
| 622 | 623 | <img alt="<?php esc_attr_e('Insert an Image'); ?>" src="<?php echo esc_url( admin_url( 'images/media-button-image.gif?ver=20100531' ) ); ?>"/></a> |
| 623 | 624 | <?php |
| 624 | 625 | } |
| 625 | 626 | ?> |
| 626 | | <a id="video_button" title="<?php esc_attr_e('Embed a Video'); ?>" href="#"><img alt="<?php esc_attr_e('Embed a Video'); ?>" src="<?php echo esc_url( admin_url( 'images/media-button-video.gif?ver=20100531' ) ); ?>"/></a> |
| | 627 | <a id="video_button" title="<?php esc_attr_e('Embed a Video'); ?>" href="#"><div title="<?php esc_attr_e('Embed a Video'); ?>" class="media-button-video"></div></a> |
| 627 | 628 | <?php |
| 628 | 629 | } |
| 629 | 630 | |