From 4dbaefde4d4550855b9434f85d4221d220b234ec Mon Sep 17 00:00:00 2001 From: Justin Sternberg Date: Tue, 8 Nov 2016 10:33:07 -0500 Subject: [PATCH] Re-trunk the init class --- init.php | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/init.php b/init.php index 810852aed..9dbdc5fa2 100644 --- a/init.php +++ b/init.php @@ -48,7 +48,7 @@ or things might explode! *************************************************************************/ -if ( ! class_exists( 'CMB2_Bootstrap_2231', false ) ) { +if ( ! class_exists( 'CMB2_Bootstrap_224_Trunk', false ) ) { /** * Handles checking for and loading the newest version of CMB2 @@ -61,14 +61,14 @@ * @license GPL-2.0+ * @link http://webdevstudios.com */ - class CMB2_Bootstrap_2231 { + class CMB2_Bootstrap_224_Trunk { /** * Current version number * @var string * @since 1.0.0 */ - const VERSION = '2.2.3.1'; + const VERSION = '2.2.4'; /** * Current version hook priority. @@ -80,17 +80,17 @@ class CMB2_Bootstrap_2231 { const PRIORITY = 9978; /** - * Single instance of the CMB2_Bootstrap_2231 object + * Single instance of the CMB2_Bootstrap_224_Trunk object * - * @var CMB2_Bootstrap_2231 + * @var CMB2_Bootstrap_224_Trunk */ public static $single_instance = null; /** - * Creates/returns the single instance CMB2_Bootstrap_2231 object + * Creates/returns the single instance CMB2_Bootstrap_224_Trunk object * * @since 2.0.0 - * @return CMB2_Bootstrap_2231 Single instance object + * @return CMB2_Bootstrap_224_Trunk Single instance object */ public static function initiate() { if ( null === self::$single_instance ) { @@ -181,6 +181,6 @@ public function l10ni18n() { } // Make it so... - CMB2_Bootstrap_2231::initiate(); + CMB2_Bootstrap_224_Trunk::initiate(); }