PluginProbe
UsersWP – Front-end login form, User Registration, User Profile & Members Directory plugin for WP / 1.2.11
UsersWP – Front-end login form, User Registration, User Profile & Members Directory plugin for WP v1.2.11
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 | includes/class-notices.php +2 -2 trunk1.2.11 View file →
@@ -80,9 +80,9 @@
80 80 'message' => __('Invalid activation key or account.', 'userswp'),
81 81 'type' => 'error',
82 82 );
83 83
84 - $messages = apply_filters('uwp_form_error_messages', $messages, $echo, $user_id );
84 + $messages = apply_filters('uwp_form_error_messages', $messages);
85 85
86 86 if (!empty($key) && isset($messages[$key])) {
87 87 $value = $messages[$key];
88 88 $message = $value['message'];
@@ -110,9 +110,9 @@
110 110 $updater = new UsersWP_Background_Updater();
111 111 if ( $updater->is_updating() || ! empty( $_GET['force_sync_data'] ) ) {
112 112 ?>
113 113 <div id="message" class="updated notice notice-alt uwp-message">
114 - <p><strong><?php esc_attr_e( 'UsersWP data sync', 'userswp' ); ?></strong> &#8211; <?php esc_attr_e( 'Users data sync is running in the background.', 'userswp' ); ?> <a href="<?php echo esc_url( add_query_arg( array( 'force_sync_data' => 'true', '_nonce' => wp_create_nonce( 'force_sync_data' ) ), admin_url( 'admin.php?page=userswp' ) ) ); ?>"><?php esc_attr_e( 'Taking a while? Click here to run it now.', 'userswp' ); ?></a></p>
114 + <p><strong><?php esc_attr_e( 'UsersWP data sync', 'userswp' ); ?></strong> &#8211; <?php esc_attr_e( 'Users data sync is running in the background.', 'userswp' ); ?> <a href="<?php echo esc_url( add_query_arg( 'force_sync_data', 'true', admin_url( 'admin.php?page=userswp' ) ) ); ?>"><?php esc_attr_e( 'Taking a while? Click here to run it now.', 'userswp' ); ?></a></p>
115 115 </div>
116 116 <?php
117 117 }
118 118 }