Skip to content

Commit

Permalink
Re-trunk the loader
Browse files Browse the repository at this point in the history
  • Loading branch information
jtsternberg committed Aug 7, 2017
1 parent e851dc6 commit 7872670
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions init.php
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@
* ***********************************************************************
*/

if ( ! class_exists( 'CMB2_Bootstrap_2251', false ) ) {
if ( ! class_exists( 'CMB2_Bootstrap_226_Trunk', false ) ) {

/**
* Handles checking for and loading the newest version of CMB2
Expand All @@ -67,7 +67,7 @@
* @license GPL-2.0+
* @link https://cmb2.io
*/
class CMB2_Bootstrap_2251 {
class CMB2_Bootstrap_226_Trunk {

/**
* Current version number
Expand All @@ -87,17 +87,17 @@ class CMB2_Bootstrap_2251 {
const PRIORITY = 9975;

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

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

// Make it so...
CMB2_Bootstrap_2251::initiate();
CMB2_Bootstrap_226_Trunk::initiate();

}// End if().

0 comments on commit 7872670

Please sign in to comment.