diff options
author | 2016-02-12 22:22:00 -0500 | |
---|---|---|
committer | 2016-02-12 22:22:00 -0500 | |
commit | 657cafe0e955cf88033597f131aa50835140c617 (patch) | |
tree | cf21a30d319cb2a238a6cfb8b4eb3b20b1b5dcff /plugins/jetpack/jetpack.php | |
parent | Adding New Mantra version 2.4.1.1 - Bug 574468 (diff) | |
download | blogs-gentoo-657cafe0e955cf88033597f131aa50835140c617.tar.gz blogs-gentoo-657cafe0e955cf88033597f131aa50835140c617.tar.bz2 blogs-gentoo-657cafe0e955cf88033597f131aa50835140c617.zip |
Updating plugins easy-table, jetpack, openid, public-post preview, talbe-of-contents-plus, wordress-mobile-pack - Bug 574468
Diffstat (limited to 'plugins/jetpack/jetpack.php')
-rw-r--r-- | plugins/jetpack/jetpack.php | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/plugins/jetpack/jetpack.php b/plugins/jetpack/jetpack.php index c78d7ec1..a22a6257 100644 --- a/plugins/jetpack/jetpack.php +++ b/plugins/jetpack/jetpack.php @@ -2,19 +2,19 @@ /* * Plugin Name: Jetpack by WordPress.com - * Plugin URI: http://wordpress.org/extend/plugins/jetpack/ + * Plugin URI: http://jetpack.me * Description: Bring the power of the WordPress.com cloud to your self-hosted WordPress. Jetpack enables you to connect your blog to a WordPress.com account to use the powerful features normally only available to WordPress.com users. * Author: Automattic - * Version: 3.5.3 + * Version: 3.9.1 * Author URI: http://jetpack.me * License: GPL2+ * Text Domain: jetpack * Domain Path: /languages/ */ -define( 'JETPACK__MINIMUM_WP_VERSION', '4.0' ); +define( 'JETPACK__MINIMUM_WP_VERSION', '4.3' ); -define( 'JETPACK__VERSION', '3.5.3' ); +define( 'JETPACK__VERSION', '3.9.1' ); define( 'JETPACK_MASTER_USER', true ); define( 'JETPACK__API_VERSION', 1 ); define( 'JETPACK__PLUGIN_DIR', plugin_dir_path( __FILE__ ) ); @@ -48,9 +48,11 @@ require_once( JETPACK__PLUGIN_DIR . 'functions.compat.php' ); require_once( JETPACK__PLUGIN_DIR . 'functions.gallery.php' ); require_once( JETPACK__PLUGIN_DIR . 'require-lib.php' ); require_once( JETPACK__PLUGIN_DIR . 'class.jetpack-autoupdate.php' ); +require_once( JETPACK__PLUGIN_DIR . 'class.jetpack-tracks.php' ); if ( is_admin() ) { require_once( JETPACK__PLUGIN_DIR . 'class.jetpack-admin.php' ); + require_once( JETPACK__PLUGIN_DIR . 'class.jetpack-jitm.php' ); } // Play nice with http://wp-cli.org/ |