Changeset 2820884
- Timestamp:
- 11/19/2022 01:16:48 PM (3 years ago)
- Location:
- bp-group-analytics/trunk
- Files:
-
- 4 edited
-
history.txt (modified) (1 diff)
-
include/admin.php (modified) (2 diffs)
-
loader.php (modified) (2 diffs)
-
readme.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
bp-group-analytics/trunk/history.txt
r2156086 r2820884 4 4 -1.1- 5 5 Update according to the latest version of WordPress and BuddyPress 6 7 -1.2- 8 Update according to the latest version of WordPress and BuddyPress -
bp-group-analytics/trunk/include/admin.php
r2156086 r2820884 33 33 if(!empty($xprofile_selected_fields_value)) 34 34 $xprofile_selected_fields = explode(",",$xprofile_selected_fields_value); 35 36 35 $profile_groups = BP_XProfile_Group::get( array( 'fetch_fields' => true ) ); 37 36 … … 57 56 if ( !empty( $profile_group->fields ) ) { 58 57 foreach ( $profile_group->fields as $field ) { 59 if(in_array($field->id , $xprofile_selected_fields)){58 if(in_array($field->id.'|'.$field->name, $xprofile_selected_fields)){ 60 59 echo '<option selected="selected" value="'.$field->id.'|'.$field->name. '">' . $field->name . '</option> '; 61 60 } else { -
bp-group-analytics/trunk/loader.php
r2156086 r2820884 6 6 7 7 Description: BP Group Analytics. 8 Version: 1. 19 Revision Date: September 13,20198 Version: 1.2 9 Revision Date: November 17,2022 10 10 Requires at least: WP 3.5.1, BuddyPress 1.6.5 11 Tested up to: WP 5.2.3, BuddyPress 4.4.011 Tested up to: WP 6.1, BuddyPress 10.6.0 12 12 License: GNU General Public License 3.0 or newer (GPL) http://www.gnu.org/licenses/gpl.html 13 13 Author: Vivek Sharma … … 20 20 21 21 //some constants that can be checked when extending this plugin 22 define('BP_GROUP_ANALYTICS_IS_INSTALLED', 1. 1);23 define('BP_GROUP_ANALYTICS_VERSION', '1. 1');22 define('BP_GROUP_ANALYTICS_IS_INSTALLED', 1.2); 23 define('BP_GROUP_ANALYTICS_VERSION', '1.2'); 24 24 25 25 -
bp-group-analytics/trunk/readme.txt
r2221566 r2820884 2 2 Contributors: erviveksharma2008 3 3 Tags: BuddyPress, group, xprofile fields, plugin, charts 4 Version: 1. 15 Revision Date: September 13, 20194 Version: 1.2 5 Revision Date: November 17, 2022 6 6 Requires at least: 3.5.1 7 Tested up to: 5.3.27 Tested up to: 6.1 8 8 Requires PHP: 7.2 9 9 License: GNU General Public License 3.0 or newer (GPL) http://www.gnu.org/licenses/gpl.html
Note: See TracChangeset
for help on using the changeset viewer.