Version Description
- Fixed (authenticated) vulnerability issue
Download this release
Release Info
Developer | spwebguy |
Plugin | Team Members |
Version | 5.0.4 |
Comparing to | |
See all releases |
Code changes from version 5.0.3 to 5.0.4
- inc/tmm-save-metaboxes.php +1 -1
- readme.txt +3 -0
- tmm.php +1 -1
inc/tmm-save-metaboxes.php
CHANGED
@@ -71,7 +71,7 @@ function dmb_tmm_plan_meta_box_save($post_id) {
|
|
71 |
(isset($member_firstname) && $member_firstname) ? $new_team[$i]['_tmm_firstname'] = stripslashes( wp_kses_post( $member_firstname ) ) : $new_team[$i]['_tmm_firstname'] = __('Untitled', TMM_TXTDM );
|
72 |
(isset($member_lastname) && $member_lastname) ? $new_team[$i]['_tmm_lastname'] = stripslashes( wp_kses_post( $member_lastname ) ) : $new_team[$i]['_tmm_lastname'] = '';
|
73 |
(isset($member_job) && $member_job) ? $new_team[$i]['_tmm_job'] = stripslashes( wp_kses_post( $member_job ) ) : $new_team[$i]['_tmm_job'] = '';
|
74 |
-
(isset($member_bio) && $member_bio) ? $new_team[$i]['_tmm_desc'] = balanceTags( $member_bio ) : $new_team[$i]['_tmm_desc'] = '';
|
75 |
(isset($member_photo) && $member_photo) ? $new_team[$i]['_tmm_photo'] = stripslashes( strip_tags( sanitize_text_field( $member_photo ) ) ) : $new_team[$i]['_tmm_photo'] = '';
|
76 |
(isset($member_photo_url) && $member_photo_url) ? $new_team[$i]['_tmm_photo_url'] = stripslashes( strip_tags( sanitize_text_field( $member_photo_url ) ) ) : $new_team[$i]['_tmm_photo_url'] = '';
|
77 |
|
71 |
(isset($member_firstname) && $member_firstname) ? $new_team[$i]['_tmm_firstname'] = stripslashes( wp_kses_post( $member_firstname ) ) : $new_team[$i]['_tmm_firstname'] = __('Untitled', TMM_TXTDM );
|
72 |
(isset($member_lastname) && $member_lastname) ? $new_team[$i]['_tmm_lastname'] = stripslashes( wp_kses_post( $member_lastname ) ) : $new_team[$i]['_tmm_lastname'] = '';
|
73 |
(isset($member_job) && $member_job) ? $new_team[$i]['_tmm_job'] = stripslashes( wp_kses_post( $member_job ) ) : $new_team[$i]['_tmm_job'] = '';
|
74 |
+
(isset($member_bio) && $member_bio) ? $new_team[$i]['_tmm_desc'] = wp_kses_post(balanceTags( $member_bio )) : $new_team[$i]['_tmm_desc'] = '';
|
75 |
(isset($member_photo) && $member_photo) ? $new_team[$i]['_tmm_photo'] = stripslashes( strip_tags( sanitize_text_field( $member_photo ) ) ) : $new_team[$i]['_tmm_photo'] = '';
|
76 |
(isset($member_photo_url) && $member_photo_url) ? $new_team[$i]['_tmm_photo_url'] = stripslashes( strip_tags( sanitize_text_field( $member_photo_url ) ) ) : $new_team[$i]['_tmm_photo_url'] = '';
|
77 |
|
readme.txt
CHANGED
@@ -91,6 +91,9 @@ Find help on [our support platform](https://wpdarko.com/support) for this plugin
|
|
91 |
6. Finding the shortcode (admin view)
|
92 |
|
93 |
== Changelog ==
|
|
|
|
|
|
|
94 |
= 5.0.3 =
|
95 |
* Various styling fixes
|
96 |
|
91 |
6. Finding the shortcode (admin view)
|
92 |
|
93 |
== Changelog ==
|
94 |
+
= 5.0.4 =
|
95 |
+
* Fixed (authenticated) vulnerability issue
|
96 |
+
|
97 |
= 5.0.3 =
|
98 |
* Various styling fixes
|
99 |
|
tmm.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
* Plugin Name: Team Members
|
4 |
* Plugin URI: https://wpdarko.com/team-members
|
5 |
* Description: A responsive, simple and clean way to display your team. Create new members, add their positions, bios, social links and copy-paste the shortcode into any post/page. Find help and information on our <a href="https://wpdarko.com/support">support site</a>. This free version is NOT limited and does not contain any ad. Check out the <a href='https://wpdarko.com/team-members'>PRO version</a> for more great features.
|
6 |
-
* Version: 5.0.
|
7 |
* Author: WP Darko
|
8 |
* Author URI: https://wpdarko.com
|
9 |
* Text Domain: team-members
|
3 |
* Plugin Name: Team Members
|
4 |
* Plugin URI: https://wpdarko.com/team-members
|
5 |
* Description: A responsive, simple and clean way to display your team. Create new members, add their positions, bios, social links and copy-paste the shortcode into any post/page. Find help and information on our <a href="https://wpdarko.com/support">support site</a>. This free version is NOT limited and does not contain any ad. Check out the <a href='https://wpdarko.com/team-members'>PRO version</a> for more great features.
|
6 |
+
* Version: 5.0.4
|
7 |
* Author: WP Darko
|
8 |
* Author URI: https://wpdarko.com
|
9 |
* Text Domain: team-members
|