Plugin Directory

Changeset 3254283


Ignore:
Timestamp:
03/11/2025 06:34:20 PM (11 months ago)
Author:
dontdream
Message:

tagging version 5.8.3

Location:
bp-profile-search
Files:
3 edited
6 copied

Legend:

Unmodified
Added
Removed
  • bp-profile-search/tags/5.8.3/bps-main.php

    r3252981 r3254283  
    44Plugin URI: https://dontdream.it/bp-profile-search/
    55Description: Member search and member directories for BuddyPress and the BuddyBoss Platform.
    6 Version: 5.8.2
     6Version: 5.8.3
    77Author: Andrea Tarantini
    88Author URI: https://dontdream.it/
     
    1010*/
    1111
    12 define ('BPS_VERSION', '5.8.2');
     12define ('BPS_VERSION', '5.8.3');
    1313define ('BPS_PLUGIN_BASENAME', plugin_basename (__FILE__));
    1414
  • bp-profile-search/tags/5.8.3/bps-request.php

    r3252981 r3254283  
    5252    $showing_errors = isset ($_REQUEST['bps_errors']);
    5353
    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
    6268        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')
    6772        foreach ($hidden_filters as $key => $value)  $request[$key] = $value;
    68         break;
    69     }
    7073
    7174    $request = apply_filters ('bps_request', $request, $type, $form);
  • bp-profile-search/tags/5.8.3/readme.txt

    r3252981 r3254283  
    55Requires at least:  6.1
    66Tested up to:       6.7
    7 Stable tag:         5.8.2
     7Stable tag:         5.8.3
    88
    99Member search and member directories for BuddyPress and the BuddyBoss Platform.
     
    117117== Changelog ==
    118118
     119= 5.8.3 =
     120* Fixed: regression on [bps_directory] introduced in 5.8.2
    119121= 5.8.2 =
    120122* Fixed: special case with the hide directory option
  • bp-profile-search/trunk/bps-main.php

    r3252981 r3254283  
    44Plugin URI: https://dontdream.it/bp-profile-search/
    55Description: Member search and member directories for BuddyPress and the BuddyBoss Platform.
    6 Version: 5.8.2
     6Version: 5.8.3
    77Author: Andrea Tarantini
    88Author URI: https://dontdream.it/
     
    1010*/
    1111
    12 define ('BPS_VERSION', '5.8.2');
     12define ('BPS_VERSION', '5.8.3');
    1313define ('BPS_PLUGIN_BASENAME', plugin_basename (__FILE__));
    1414
  • bp-profile-search/trunk/bps-request.php

    r3252981 r3254283  
    5252    $showing_errors = isset ($_REQUEST['bps_errors']);
    5353
    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
    6268        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')
    6772        foreach ($hidden_filters as $key => $value)  $request[$key] = $value;
    68         break;
    69     }
    7073
    7174    $request = apply_filters ('bps_request', $request, $type, $form);
  • bp-profile-search/trunk/readme.txt

    r3252981 r3254283  
    55Requires at least:  6.1
    66Tested up to:       6.7
    7 Stable tag:         5.8.2
     7Stable tag:         5.8.3
    88
    99Member search and member directories for BuddyPress and the BuddyBoss Platform.
     
    117117== Changelog ==
    118118
     119= 5.8.3 =
     120* Fixed: regression on [bps_directory] introduced in 5.8.2
    119121= 5.8.2 =
    120122* Fixed: special case with the hide directory option
Note: See TracChangeset for help on using the changeset viewer.