Skip to content

Commit

Permalink
Re-trunk init.php
Browse files Browse the repository at this point in the history
  • Loading branch information
jtsternberg committed Aug 5, 2015
1 parent 9d8dee7 commit 0a175c4
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions init.php
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@
or things might explode!
*************************************************************************/

if ( ! class_exists( 'CMB2_Bootstrap_210', false ) ) {
if ( ! class_exists( 'CMB2_Bootstrap_211_Trunk', false ) ) {

/**
* Handles checking for and loading the newest version of CMB2
Expand All @@ -61,14 +61,14 @@
* @license GPL-2.0+
* @link http://webdevstudios.com
*/
class CMB2_Bootstrap_210 {
class CMB2_Bootstrap_211_Trunk {

/**
* Current version number
* @var string
* @since 1.0.0
*/
const VERSION = '2.1.0';
const VERSION = '2.1.1';

/**
* Current version hook priority.
Expand All @@ -77,20 +77,20 @@ class CMB2_Bootstrap_210 {
* @var int
* @since 2.0.0
*/
const PRIORITY = 9989;
const PRIORITY = 9988;

/**
* Single instance of the CMB2_Bootstrap_210 object
* Single instance of the CMB2_Bootstrap_211_Trunk object
*
* @var CMB2_Bootstrap_210
* @var CMB2_Bootstrap_211_Trunk
*/
public static $single_instance = null;

/**
* Creates/returns the single instance CMB2_Bootstrap_210 object
* Creates/returns the single instance CMB2_Bootstrap_211_Trunk object
*
* @since 2.0.0
* @return CMB2_Bootstrap_210 Single instance object
* @return CMB2_Bootstrap_211_Trunk Single instance object
*/
public static function initiate() {
if ( null === self::$single_instance ) {
Expand Down Expand Up @@ -177,6 +177,6 @@ public function l10ni18n() {
}

// Make it so...
CMB2_Bootstrap_210::initiate();
CMB2_Bootstrap_211_Trunk::initiate();

}

0 comments on commit 0a175c4

Please sign in to comment.