diff --git a/changelog.txt b/changelog.txt index 84449ea2..cfe31811 100644 --- a/changelog.txt +++ b/changelog.txt @@ -1,5 +1,11 @@ == SportsPress Changelog == += 2.7.14 = +* Fix - Error when non-value added as adjustment. +* Fix - Map links not escaped properly. +* Fix - Event blocks missing attributes. +* Fix - Player statistics meta escaping. + = 2.7.13 = * Fix - Theme notice escaping. * Fix - Timezone dropdown selection now shown in general settings. diff --git a/includes/admin/post-types/meta-boxes/class-sp-meta-box-player-statistics.php b/includes/admin/post-types/meta-boxes/class-sp-meta-box-player-statistics.php index a8c227ce..1baf0706 100644 --- a/includes/admin/post-types/meta-boxes/class-sp-meta-box-player-statistics.php +++ b/includes/admin/post-types/meta-boxes/class-sp-meta-box-player-statistics.php @@ -5,7 +5,7 @@ * @author ThemeBoy * @category Admin * @package SportsPress/Admin/Meta_Boxes - * @version 2.7.9 + * @version 2.7.14 */ if ( ! defined( 'ABSPATH' ) ) { diff --git a/includes/class-sp-player-list.php b/includes/class-sp-player-list.php index 08d0f101..513479ee 100644 --- a/includes/class-sp-player-list.php +++ b/includes/class-sp-player-list.php @@ -5,7 +5,7 @@ * The SportsPress player list class handles individual player list data. * * @class SP_Player_List - * @version 2.7.9 + * @version 2.7.14 * @package SportsPress/Classes * @category Class * @author ThemeBoy diff --git a/modules/sportspress-openstreetmap.php b/modules/sportspress-openstreetmap.php index 8cae3a73..b912d152 100644 --- a/modules/sportspress-openstreetmap.php +++ b/modules/sportspress-openstreetmap.php @@ -5,7 +5,7 @@ * @author ThemeBoy * @category Modules * @package SportsPress/Modules - * @version 2.7.9 + * @version 2.7.14 */ // Exit if accessed directly @@ -19,7 +19,7 @@ if ( ! class_exists( 'SportsPress_OpenStreetMap' ) ) : * Main SportsPress OpenStreetMap Class * * @class SportsPress_OpenStreetMap - * @version 2.7.5 + * @version 2.7.14 */ class SportsPress_OpenStreetMap { @@ -47,7 +47,7 @@ if ( ! class_exists( 'SportsPress_OpenStreetMap' ) ) : */ private function define_constants() { if ( ! defined( 'SP_OPENSTREETMAP_VERSION' ) ) { - define( 'SP_OPENSTREETMAP_VERSION', '2.7.5' ); + define( 'SP_OPENSTREETMAP_VERSION', '2.7.14' ); } if ( ! defined( 'SP_OPENSTREETMAP_URL' ) ) { diff --git a/readme.txt b/readme.txt index d4c5a7d5..86771add 100644 --- a/readme.txt +++ b/readme.txt @@ -4,7 +4,7 @@ Tags: calendars, club, club management, esports, events, fixtures, leagues, leag Donate link: http://tboy.co/donate Requires at least: 3.8 Tested up to: 5.8.1 -Stable tag: 2.7.13 +Stable tag: 2.7.14 License: GPLv3 License URI: http://www.gnu.org/licenses/gpl-3.0.html @@ -240,6 +240,12 @@ When you upgrade to one of the SportsPress Pro licenses, you can simply activate == Changelog == += 2.7.14 = +* Fix - Error when non-value added as adjustment. +* Fix - Map links not escaped properly. +* Fix - Event blocks missing attributes. +* Fix - Player statistics meta escaping. + = 2.7.13 = * Fix - Theme notice escaping. * Fix - Timezone dropdown selection now shown in general settings. diff --git a/sportspress.php b/sportspress.php index 88212f21..cf8c4f55 100644 --- a/sportspress.php +++ b/sportspress.php @@ -3,7 +3,7 @@ * Plugin Name: SportsPress * Plugin URI: http://themeboy.com/sportspress/ * Description: Manage your club and its players, staff, events, league tables, and player lists. - * Version: 2.7.13 + * Version: 2.7.14 * Author: ThemeBoy * Author URI: http://themeboy.com * Requires at least: 3.8 @@ -26,14 +26,14 @@ if ( ! class_exists( 'SportsPress' ) ) : * Main SportsPress Class * * @class SportsPress - * @version 2.7.13 + * @version 2.7.14 */ final class SportsPress { /** * @var string */ - public $version = '2.7.13'; + public $version = '2.7.14'; /** * @var SportsPress The single instance of the class diff --git a/templates/event-fixtures-results.php b/templates/event-fixtures-results.php index c3eb8714..48836c13 100644 --- a/templates/event-fixtures-results.php +++ b/templates/event-fixtures-results.php @@ -4,7 +4,7 @@ * * @author ThemeBoy * @package SportsPress/Templates - * @version 2.2 + * @version 2.7.14 */ if ( ! defined( 'ABSPATH' ) ) {