PluginProbe
UsersWP – Front-end login form, User Registration, User Profile & Members Directory plugin for WP / 1.2.74
UsersWP – Front-end login form, User Registration, User Profile & Members Directory plugin for WP v1.2.74
1.2.74 1.2.73 1.2.72 1.2.71 1.2.70 1.2.69 1.2.68 1.2.67 1.2.66 1.2.65 1.2.64 1.2.63 trunk 1.0.10 1.0.11 1.0.12 1.0.13 1.0.14 1.0.15 1.0.16 1.0.17 1.0.18 1.0.19 1.0.20 1.0.21 All 174 releases
← All changes | templates/account.php +17 -17 1.0.101.2.74 View file →
@@ -1,20 +1,20 @@
1 1 <?php do_action('uwp_template_before', 'account'); ?>
2 -<div class="uwp-content-wrap">
3 - <div class="uwp-account">
4 - <?php
5 - if (isset($_GET['type'])) {
6 - $type = strip_tags(esc_sql($_GET['type']));
7 - } else {
8 - $type = 'account';
9 - }
10 - ?>
11 - <div class="uwp-account-avatar"><?php echo get_avatar( get_current_user_id(), 100 ); ?></div>
12 - <?php do_action('uwp_template_form_title_before', 'account'); ?>
13 - <h2><?php echo apply_filters('uwp_account_page_title', __( 'Edit Account', 'userswp' ), $type); ?></h2>
14 - <?php do_action('uwp_template_form_title_after', 'account'); ?>
15 - <?php do_action('uwp_template_display_notices', 'account'); ?>
16 - <?php do_action('uwp_account_menu_display'); ?>
17 - <?php do_action('uwp_account_form_display', $type); ?>
2 + <div class="uwp-content-wrap">
3 + <div class="uwp-account">
4 + <?php
5 + if (isset($_GET['type'])) {
6 + $type = strip_tags(esc_sql($_GET['type']));
7 + } else {
8 + $type = 'account';
9 + }
10 + ?>
11 + <div class="uwp-account-avatar"><?php echo get_avatar(get_current_user_id(), 100); ?></div>
12 + <?php do_action('uwp_template_form_title_before', 'account'); ?>
13 + <h2><?php echo apply_filters('uwp_account_page_title', __('Edit Account', 'userswp'), $type); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped ?></h2>
14 + <?php do_action('uwp_template_form_title_after', 'account'); ?>
15 + <?php do_action('uwp_template_display_notices', 'account'); ?>
16 + <?php do_action('uwp_account_menu_display'); ?>
17 + <?php do_action('uwp_account_form_display', $type); ?>
18 + </div>
18 19 </div>
19 -</div>
20 20 <?php do_action('uwp_template_after', 'account'); ?>