Plugin Directory

Changeset 2497145


Ignore:
Timestamp:
03/16/2021 03:26:58 PM (5 years ago)
Author:
ThemeBoy
Message:

tagging version 2.7.7

Location:
sportspress
Files:
6 edited
32 copied

Legend:

Unmodified
Added
Removed
  • sportspress/tags/2.7.7/changelog.txt

    r2446324 r2497145  
    11== SportsPress Changelog ==
     2
     3= 2.7.7 =
     4* Fix - Events not appearing due to filter malfunction.
    25
    36= 2.7.6 =
  • sportspress/tags/2.7.7/includes/admin/post-types/class-sp-admin-cpt-event.php

    r2446324 r2497145  
    66 * @category    Admin
    77 * @package     SportsPress/Admin/Post_Types
    8  * @version     2.7.6
     8 * @version     2.7.7
    99 */
    1010
     
    306306    global $typenow, $wp_query;
    307307
    308       if ( $typenow == 'sp_event' ) {
    309         $query->query_vars['meta_query']['relation'] =  'AND';
     308    if ( $typenow == 'sp_event' ) {
     309        //Avoid overriding relation operator if already set
     310        if ( !isset( $query->query_vars['meta_query']['relation'] ) )
     311            $query->query_vars['meta_query']['relation'] =  'AND';
    310312
    311313        if ( ! empty( $_GET['team'] ) ) {
  • sportspress/tags/2.7.7/license.txt

    r2266710 r2497145  
    11SportsPress
    22
    3 Copyright 2020 by the contributors
     3Copyright 2021 by the contributors
    44
    55This program is free software; you can redistribute it and/or modify
  • sportspress/tags/2.7.7/readme.txt

    r2446324 r2497145  
    44Donate link: http://tboy.co/donate
    55Requires at least: 3.8
    6 Tested up to: 5.6
    7 Stable tag: 2.7.6
     6Tested up to: 5.7
     7Stable tag: 2.7.7
    88License: GPLv3
    99License URI: http://www.gnu.org/licenses/gpl-3.0.html
     
    240240
    241241== Changelog ==
     242
     243= 2.7.7 =
     244* Fix - Events not appearing due to filter malfunction.
    242245
    243246= 2.7.6 =
  • sportspress/tags/2.7.7/sportspress.php

    r2446324 r2497145  
    44 * Plugin URI: http://themeboy.com/sportspress/
    55 * Description: Manage your club and its players, staff, events, league tables, and player lists.
    6  * Version: 2.7.6
     6 * Version: 2.7.7
    77 * Author: ThemeBoy
    88 * Author URI: http://themeboy.com
    99 * Requires at least: 3.8
    10  * Tested up to: 5.6
     10 * Tested up to: 5.7
    1111 *
    1212 * Text Domain: sportspress
     
    2727 *
    2828 * @class SportsPress
    29  * @version 2.7.6
     29 * @version 2.7.7
    3030 */
    3131final class SportsPress {
     
    3434     * @var string
    3535     */
    36     public $version = '2.7.6';
     36    public $version = '2.7.7';
    3737
    3838    /**
  • sportspress/trunk/changelog.txt

    r2446324 r2497145  
    11== SportsPress Changelog ==
     2
     3= 2.7.7 =
     4* Fix - Events not appearing due to filter malfunction.
    25
    36= 2.7.6 =
  • sportspress/trunk/includes/admin/post-types/class-sp-admin-cpt-event.php

    r2446324 r2497145  
    66 * @category    Admin
    77 * @package     SportsPress/Admin/Post_Types
    8  * @version     2.7.6
     8 * @version     2.7.7
    99 */
    1010
     
    306306    global $typenow, $wp_query;
    307307
    308       if ( $typenow == 'sp_event' ) {
    309         $query->query_vars['meta_query']['relation'] =  'AND';
     308    if ( $typenow == 'sp_event' ) {
     309        //Avoid overriding relation operator if already set
     310        if ( !isset( $query->query_vars['meta_query']['relation'] ) )
     311            $query->query_vars['meta_query']['relation'] =  'AND';
    310312
    311313        if ( ! empty( $_GET['team'] ) ) {
  • sportspress/trunk/license.txt

    r2266710 r2497145  
    11SportsPress
    22
    3 Copyright 2020 by the contributors
     3Copyright 2021 by the contributors
    44
    55This program is free software; you can redistribute it and/or modify
  • sportspress/trunk/readme.txt

    r2446324 r2497145  
    44Donate link: http://tboy.co/donate
    55Requires at least: 3.8
    6 Tested up to: 5.6
    7 Stable tag: 2.7.6
     6Tested up to: 5.7
     7Stable tag: 2.7.7
    88License: GPLv3
    99License URI: http://www.gnu.org/licenses/gpl-3.0.html
     
    240240
    241241== Changelog ==
     242
     243= 2.7.7 =
     244* Fix - Events not appearing due to filter malfunction.
    242245
    243246= 2.7.6 =
  • sportspress/trunk/sportspress.php

    r2446324 r2497145  
    44 * Plugin URI: http://themeboy.com/sportspress/
    55 * Description: Manage your club and its players, staff, events, league tables, and player lists.
    6  * Version: 2.7.6
     6 * Version: 2.7.7
    77 * Author: ThemeBoy
    88 * Author URI: http://themeboy.com
    99 * Requires at least: 3.8
    10  * Tested up to: 5.6
     10 * Tested up to: 5.7
    1111 *
    1212 * Text Domain: sportspress
     
    2727 *
    2828 * @class SportsPress
    29  * @version 2.7.6
     29 * @version 2.7.7
    3030 */
    3131final class SportsPress {
     
    3434     * @var string
    3535     */
    36     public $version = '2.7.6';
     36    public $version = '2.7.7';
    3737
    3838    /**
Note: See TracChangeset for help on using the changeset viewer.