Ticket #34739: 34739.2.patch
| File 34739.2.patch, 769 bytes (added by , 10 years ago) |
|---|
-
src/wp-admin/network/site-new.php
229 229 <td colspan="2"><?php _e( 'A new user will be created if the above email address is not in the database.' ) ?><br /><?php _e( 'The username and password will be mailed to this email address.' ) ?></td> 230 230 </tr> 231 231 </table> 232 <?php submit_button( __('Add Site'), 'primary', 'add-site' ); ?> 232 233 <?php 234 /** 235 * Fires at the end of the new site form in network admin. 236 * 237 * @since 4.5.0 238 */ 239 do_action( 'network_site_new_form' ); 240 241 submit_button( __( 'Add Site' ), 'primary', 'add-site' ); 242 ?> 233 243 </form> 234 244 </div> 235 245 <?php