Ticket #20075: 20075.2.diff
File 20075.2.diff, 752 bytes (added by , 11 years ago) |
---|
-
src/wp-activate.php
52 52 add_action( 'wp_head', 'wpmu_activate_stylesheet' ); 53 53 54 54 get_header(); 55 56 /** 57 * Fires before the site activation form is displayed. 58 * 59 * @since 3.7.0 60 */ 61 do_action( 'before_activate_form' ); 55 62 ?> 56 63 57 64 <div id="content" class="widecolumn"> … … 116 123 var key_input = document.getElementById('key'); 117 124 key_input && key_input.focus(); 118 125 </script> 119 <?php get_footer(); ?> 120 No newline at end of file 126 <?php 127 /** 128 * Fires after the site activation form is displayed. 129 * 130 * @since 3.7.0 131 */ 132 do_action( 'after_activate_form' ); 133 134 get_footer();