Skip to content

Commit

Permalink
change to trunk class name
Browse files Browse the repository at this point in the history
  • Loading branch information
jtsternberg committed Oct 1, 2015
1 parent 70d2dbc commit afcdeda
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 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_211', false ) ) {
if ( ! class_exists( 'CMB2_Bootstrap_211_Trunk', false ) ) {

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

/**
* Current version number
Expand All @@ -77,20 +77,20 @@ class CMB2_Bootstrap_211 {
* @var int
* @since 2.0.0
*/
const PRIORITY = 9988;
const PRIORITY = 9987;

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

/**
* Creates/returns the single instance CMB2_Bootstrap_211 object
* Creates/returns the single instance CMB2_Bootstrap_211_Trunk object
*
* @since 2.0.0
* @return CMB2_Bootstrap_211 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_211::initiate();
CMB2_Bootstrap_211_Trunk::initiate();

}

0 comments on commit afcdeda

Please sign in to comment.