Tag version 1.8.7

This commit is contained in:
Brian Miyaji
2015-07-17 16:09:38 +10:00
parent e849e3d308
commit 507f13e839
23 changed files with 72 additions and 40 deletions

View File

@@ -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: 1.8.6
* Version: 1.8.7
* 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 1.8.6
* @version 1.8.7
*/
final class SportsPress {
/**
* @var string
*/
public $version = '1.8.6';
public $version = '1.8.7';
/**
* @var SportsPress The single instance of the class
@@ -138,7 +138,7 @@ final class SportsPress {
return array_merge( array(
'<a href="' . admin_url( 'admin.php?page=sportspress' ) . '">' . __( 'Settings', 'sportspress' ) . '</a>',
'<a href="' . apply_filters( 'sportspress_docs_url', 'http://tboy.co/docs' ) . '">' . __( 'Docs', 'sportspress' ) . '</a>',
'<a href="' . apply_filters( 'sportspress_pro_url', 'http://tboy.co/pricing' ) . '">' . __( 'Upgrade', 'sportspress' ) . '</a>',
'<a href="' . apply_filters( 'sportspress_pro_url', 'http://tboy.co/pro' ) . '">' . __( 'Upgrade', 'sportspress' ) . '</a>',
), $links );
}