Changeset 3254283
- Timestamp:
- 03/11/2025 06:34:20 PM (11 months ago)
- Location:
- bp-profile-search
- Files:
-
- 3 edited
- 6 copied
-
tags/5.8.3 (copied) (copied from bp-profile-search/trunk)
-
tags/5.8.3/bps-external.php (copied) (copied from bp-profile-search/trunk/bps-external.php)
-
tags/5.8.3/bps-main.php (copied) (copied from bp-profile-search/trunk/bps-main.php) (2 diffs)
-
tags/5.8.3/bps-request.php (copied) (copied from bp-profile-search/trunk/bps-request.php) (1 diff)
-
tags/5.8.3/bps-search.php (copied) (copied from bp-profile-search/trunk/bps-search.php)
-
tags/5.8.3/readme.txt (copied) (copied from bp-profile-search/trunk/readme.txt) (2 diffs)
-
trunk/bps-main.php (modified) (2 diffs)
-
trunk/bps-request.php (modified) (1 diff)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
bp-profile-search/tags/5.8.3/bps-main.php
r3252981 r3254283 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. 26 Version: 5.8.3 7 7 Author: Andrea Tarantini 8 8 Author URI: https://dontdream.it/ … … 10 10 */ 11 11 12 define ('BPS_VERSION', '5.8. 2');12 define ('BPS_VERSION', '5.8.3'); 13 13 define ('BPS_PLUGIN_BASENAME', plugin_basename (__FILE__)); 14 14 -
bp-profile-search/tags/5.8.3/bps-request.php
r3252981 r3254283 52 52 $showing_errors = isset ($_REQUEST['bps_errors']); 53 53 54 if (!empty ($request)) switch ($type) 55 { 56 case 'form': 57 if ($request[BPS_FORM] != $form) $request = array (); 58 break; 59 60 case 'filters': 61 if ($request['bps_directory'] != $current || $showing_errors) $request = array (); 54 if (!empty ($request)) 55 { 56 switch ($type) 57 { 58 case 'form': 59 if ($request[BPS_FORM] != $form) $request = array (); 60 break; 61 62 case 'filters': 63 case 'search': 64 if ($request['bps_directory'] != $current || $showing_errors) $request = array (); 65 break; 66 } 67 62 68 foreach ($hidden_filters as $key => $value) unset ($request[$key]); 63 break; 64 65 case 'search': 66 if ($request['bps_directory'] != $current || $showing_errors) $request = array (); 69 } 70 71 if ($type == 'search') 67 72 foreach ($hidden_filters as $key => $value) $request[$key] = $value; 68 break;69 }70 73 71 74 $request = apply_filters ('bps_request', $request, $type, $form); -
bp-profile-search/tags/5.8.3/readme.txt
r3252981 r3254283 5 5 Requires at least: 6.1 6 6 Tested up to: 6.7 7 Stable tag: 5.8. 27 Stable tag: 5.8.3 8 8 9 9 Member search and member directories for BuddyPress and the BuddyBoss Platform. … … 117 117 == Changelog == 118 118 119 = 5.8.3 = 120 * Fixed: regression on [bps_directory] introduced in 5.8.2 119 121 = 5.8.2 = 120 122 * Fixed: special case with the hide directory option -
bp-profile-search/trunk/bps-main.php
r3252981 r3254283 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. 26 Version: 5.8.3 7 7 Author: Andrea Tarantini 8 8 Author URI: https://dontdream.it/ … … 10 10 */ 11 11 12 define ('BPS_VERSION', '5.8. 2');12 define ('BPS_VERSION', '5.8.3'); 13 13 define ('BPS_PLUGIN_BASENAME', plugin_basename (__FILE__)); 14 14 -
bp-profile-search/trunk/bps-request.php
r3252981 r3254283 52 52 $showing_errors = isset ($_REQUEST['bps_errors']); 53 53 54 if (!empty ($request)) switch ($type) 55 { 56 case 'form': 57 if ($request[BPS_FORM] != $form) $request = array (); 58 break; 59 60 case 'filters': 61 if ($request['bps_directory'] != $current || $showing_errors) $request = array (); 54 if (!empty ($request)) 55 { 56 switch ($type) 57 { 58 case 'form': 59 if ($request[BPS_FORM] != $form) $request = array (); 60 break; 61 62 case 'filters': 63 case 'search': 64 if ($request['bps_directory'] != $current || $showing_errors) $request = array (); 65 break; 66 } 67 62 68 foreach ($hidden_filters as $key => $value) unset ($request[$key]); 63 break; 64 65 case 'search': 66 if ($request['bps_directory'] != $current || $showing_errors) $request = array (); 69 } 70 71 if ($type == 'search') 67 72 foreach ($hidden_filters as $key => $value) $request[$key] = $value; 68 break;69 }70 73 71 74 $request = apply_filters ('bps_request', $request, $type, $form); -
bp-profile-search/trunk/readme.txt
r3252981 r3254283 5 5 Requires at least: 6.1 6 6 Tested up to: 6.7 7 Stable tag: 5.8. 27 Stable tag: 5.8.3 8 8 9 9 Member search and member directories for BuddyPress and the BuddyBoss Platform. … … 117 117 == Changelog == 118 118 119 = 5.8.3 = 120 * Fixed: regression on [bps_directory] introduced in 5.8.2 119 121 = 5.8.2 = 120 122 * Fixed: special case with the hide directory option
Note: See TracChangeset
for help on using the changeset viewer.