Plugin Directory

Changeset 3251405


Ignore:
Timestamp:
03/06/2025 01:27:13 AM (13 months ago)
Author:
dontdream
Message:

tagging version 5.8.1

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

Legend:

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

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

    r3065996 r3251405  
    5252
    5353    $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    }
    5565
    5666    $results = bps_search ($request);
  • bp-profile-search/tags/5.8.1/readme.txt

    r3189884 r3251405  
    55Requires at least:  6.1
    66Tested up to:       6.7
    7 Stable tag:         5.8
     7Stable tag:         5.8.1
    88
    99Member search and member directories for BuddyPress and the BuddyBoss Platform.
     
    117117== Changelog ==
    118118
     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
    119122= 5.8 =
    120123* Removed a security issue - thanks to *vgo0* via Wordfence
  • bp-profile-search/trunk/bps-main.php

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

    r3065996 r3251405  
    5252
    5353    $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    }
    5565
    5666    $results = bps_search ($request);
  • bp-profile-search/trunk/readme.txt

    r3189884 r3251405  
    55Requires at least:  6.1
    66Tested up to:       6.7
    7 Stable tag:         5.8
     7Stable tag:         5.8.1
    88
    99Member search and member directories for BuddyPress and the BuddyBoss Platform.
     
    117117== Changelog ==
    118118
     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
    119122= 5.8 =
    120123* Removed a security issue - thanks to *vgo0* via Wordfence
Note: See TracChangeset for help on using the changeset viewer.