Ticket #25731: 25731.patch
File 25731.patch, 1.9 KB (added by , 11 years ago) |
---|
-
src/wp-admin/press-this.php
309 309 </script> 310 310 311 311 <?php 312 /** This action is documented in wp-admin/admin-header.php */ 312 313 do_action( 'admin_enqueue_scripts', 'press-this.php' ); 314 /** 315 * Print styles for the press-this admin page. 316 * 317 * Hardcoded since the press-this.php is not using 318 * the wp-admin/admin-header.php 319 * 320 * @since 3.7.0 321 */ 313 322 do_action( 'admin_print_styles-press-this.php' ); 323 /** This action is documented in wp-admin/admin-header.php */ 314 324 do_action( 'admin_print_styles' ); 325 /** 326 * Print scripts for the press-this admin page. 327 * 328 * Hardcoded since the press-this.php is not using 329 * the wp-admin/admin-header.php 330 * 331 * @since 3.7.0 332 */ 315 333 do_action( 'admin_print_scripts-press-this.php' ); 334 /** This action is documented in wp-admin/admin-header.php */ 316 335 do_action( 'admin_print_scripts' ); 336 /** 337 * Fires in <head> for the press-this admin page. 338 * 339 * Hardcoded since the press-this.php is not using 340 * the wp-admin/admin-header.php 341 * 342 * @since 2.1.0 343 */ 317 344 do_action( 'admin_head-press-this.php' ); 345 /** This action is documented in wp-admin/admin-header.php */ 318 346 do_action( 'admin_head' ); 319 347 ?> 320 348 <script type="text/javascript"> … … 649 677 </tr></table> 650 678 </div> 651 679 <?php 680 /** This action is documented in wp-admin/admin-footer.php */ 652 681 do_action('admin_footer'); 682 /** This action is documented in wp-admin/admin-footer.php */ 653 683 do_action('admin_print_footer_scripts'); 684 /** 685 * Print scripts or data after the default footer scripts. 686 * 687 * Hardcoded since the press-this.php is not using 688 * the wp-admin/admin-footer.php 689 * 690 * @since 3.8.0 691 */ 692 do_action('admin_footer-press-this.php'); 654 693 ?> 655 694 <script type="text/javascript">if(typeof wpOnload=='function')wpOnload();</script> 656 695 </body>