wp-admin/network/user-new.php 1 location
|
@@ 101-108 (lines=8) @@
|
98 |
|
echo '<div id="message" class="updated notice is-dismissible"><p>' . $msg . '</p></div>'; |
99 |
|
} |
100 |
|
|
101 |
|
if ( isset( $add_user_errors ) && is_wp_error( $add_user_errors ) ) { ?> |
102 |
|
<div class="error"> |
103 |
|
<?php |
104 |
|
foreach ( $add_user_errors->get_error_messages() as $message ) |
105 |
|
echo "<p>$message</p>"; |
106 |
|
?> |
107 |
|
</div> |
108 |
|
<?php } ?> |
109 |
|
<form action="<?php echo network_admin_url('user-new.php?action=add-user'); ?>" id="adduser" method="post" novalidate="novalidate"> |
110 |
|
<table class="form-table"> |
111 |
|
<tr class="form-field form-required"> |
wp-admin/user-new.php 1 location
|
@@ 295-302 (lines=8) @@
|
292 |
|
echo '<div id="message" class="updated notice is-dismissible"><p>' . $msg . '</p></div>'; |
293 |
|
} ?> |
294 |
|
|
295 |
|
<?php if ( isset($add_user_errors) && is_wp_error( $add_user_errors ) ) : ?> |
296 |
|
<div class="error"> |
297 |
|
<?php |
298 |
|
foreach ( $add_user_errors->get_error_messages() as $message ) |
299 |
|
echo "<p>$message</p>"; |
300 |
|
?> |
301 |
|
</div> |
302 |
|
<?php endif; ?> |
303 |
|
<div id="ajax-response"></div> |
304 |
|
|
305 |
|
<?php |