Changeset 3251405
- Timestamp:
- 03/06/2025 01:27:13 AM (13 months ago)
- Location:
- bp-profile-search
- Files:
-
- 3 edited
- 10 copied
-
tags/5.8.1 (copied) (copied from bp-profile-search/trunk)
-
tags/5.8.1/bps-admin.js (copied) (copied from bp-profile-search/trunk/bps-admin.js)
-
tags/5.8.1/bps-admin.php (copied) (copied from bp-profile-search/trunk/bps-admin.php)
-
tags/5.8.1/bps-directory.php (copied) (copied from bp-profile-search/trunk/bps-directory.php)
-
tags/5.8.1/bps-external.php (copied) (copied from bp-profile-search/trunk/bps-external.php)
-
tags/5.8.1/bps-main.php (copied) (copied from bp-profile-search/trunk/bps-main.php) (2 diffs)
-
tags/5.8.1/bps-search.php (copied) (copied from bp-profile-search/trunk/bps-search.php) (1 diff)
-
tags/5.8.1/bps-start.php (copied) (copied from bp-profile-search/trunk/bps-start.php)
-
tags/5.8.1/readme.txt (copied) (copied from bp-profile-search/trunk/readme.txt) (2 diffs)
-
tags/5.8.1/templates/members/bps-form-default.php (copied) (copied from bp-profile-search/trunk/templates/members/bps-form-default.php)
-
trunk/bps-main.php (modified) (2 diffs)
-
trunk/bps-search.php (modified) (1 diff)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
bp-profile-search/tags/5.8.1/bps-main.php
r3136686 r3251405 4 4 Plugin URI: https://dontdream.it/bp-profile-search/ 5 5 Description: Member search and member directories for BuddyPress and the BuddyBoss Platform. 6 Version: 5.8 6 Version: 5.8.1 7 7 Author: Andrea Tarantini 8 8 Author URI: https://dontdream.it/ … … 10 10 */ 11 11 12 define ('BPS_VERSION', '5.8 ');12 define ('BPS_VERSION', '5.8.1'); 13 13 define ('BPS_PLUGIN_BASENAME', plugin_basename (__FILE__)); 14 14 -
bp-profile-search/tags/5.8.1/bps-search.php
r3065996 r3251405 52 52 53 53 $request = bps_get_request ('search'); 54 if (empty ($request)) return $querystring; 54 if (empty ($request) || $request[BPS_FORM] == 'clear') 55 { 56 $hide_directory = apply_filters ('bps_hide_directory', false); 57 if ($hide_directory) 58 { 59 parse_str ($querystring, $args); 60 $args['include'] = '0'; 61 $querystring = http_build_query ($args); 62 } 63 return $querystring; 64 } 55 65 56 66 $results = bps_search ($request); -
bp-profile-search/tags/5.8.1/readme.txt
r3189884 r3251405 5 5 Requires at least: 6.1 6 6 Tested up to: 6.7 7 Stable tag: 5.8 7 Stable tag: 5.8.1 8 8 9 9 Member search and member directories for BuddyPress and the BuddyBoss Platform. … … 117 117 == Changelog == 118 118 119 = 5.8.1 = 120 * Added: ability to hide directory 121 * See [BP Profile Search 5.8.1](https://dontdream.it/bp-profile-search-5-8-1/) for details 119 122 = 5.8 = 120 123 * Removed a security issue - thanks to *vgo0* via Wordfence -
bp-profile-search/trunk/bps-main.php
r3136686 r3251405 4 4 Plugin URI: https://dontdream.it/bp-profile-search/ 5 5 Description: Member search and member directories for BuddyPress and the BuddyBoss Platform. 6 Version: 5.8 6 Version: 5.8.1 7 7 Author: Andrea Tarantini 8 8 Author URI: https://dontdream.it/ … … 10 10 */ 11 11 12 define ('BPS_VERSION', '5.8 ');12 define ('BPS_VERSION', '5.8.1'); 13 13 define ('BPS_PLUGIN_BASENAME', plugin_basename (__FILE__)); 14 14 -
bp-profile-search/trunk/bps-search.php
r3065996 r3251405 52 52 53 53 $request = bps_get_request ('search'); 54 if (empty ($request)) return $querystring; 54 if (empty ($request) || $request[BPS_FORM] == 'clear') 55 { 56 $hide_directory = apply_filters ('bps_hide_directory', false); 57 if ($hide_directory) 58 { 59 parse_str ($querystring, $args); 60 $args['include'] = '0'; 61 $querystring = http_build_query ($args); 62 } 63 return $querystring; 64 } 55 65 56 66 $results = bps_search ($request); -
bp-profile-search/trunk/readme.txt
r3189884 r3251405 5 5 Requires at least: 6.1 6 6 Tested up to: 6.7 7 Stable tag: 5.8 7 Stable tag: 5.8.1 8 8 9 9 Member search and member directories for BuddyPress and the BuddyBoss Platform. … … 117 117 == Changelog == 118 118 119 = 5.8.1 = 120 * Added: ability to hide directory 121 * See [BP Profile Search 5.8.1](https://dontdream.it/bp-profile-search-5-8-1/) for details 119 122 = 5.8 = 120 123 * Removed a security issue - thanks to *vgo0* via Wordfence
Note: See TracChangeset
for help on using the changeset viewer.