- Timestamp:
- 02/29/2016 10:11:54 PM (9 years ago)
- Location:
- cmb2/trunk
- Files:
- 4 edited
- CHANGELOG.md (modified) (1 diff)
- init.php (modified) (7 diffs)
- languages/cmb2.pot (modified) (1 diff)
- readme.txt (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
cmb2/trunk/CHANGELOG.md
r1359900 r1361184 3 3 4 4 ## [][] 5 6 ## 2.2.1 - 2016-02-29 7 8 ### Bug Fixes 9 10 * Fixes back-compatibility issue which could allow multiple CMB2 instances to load (causing fatal errors). ([#520](https://.com/WebDevStudios/CMB2/pull/520)) 5 11 6 12 ## 2.2.0 - 2016-02-27 cmb2/trunk/init.php
r1359893 r1361184 18 18 * Andrew Norcross (@norcross / andrewnorcross.com) 19 19 * 20 * Version: 2.2. 020 * Version: 2.2.1 21 21 * 22 22 * Text Domain: cmb2 … … 49 49 *************************************************************************/ 50 50 51 if ( ! class_exists( 'CMB2_Bootstrap_22 0', false ) ) {51 if ( ! class_exists( 'CMB2_Bootstrap_221', false ) ) { 52 52 53 53 /** … … 62 62 * @link http://webdevstudios.com 63 63 */ 64 class CMB2_Bootstrap_22 0{64 class CMB2_Bootstrap_221 { 65 65 66 66 /** … … 69 69 * @since 1.0.0 70 70 */ 71 const VERSION = '2.2. 0';71 const VERSION = '2.2.1'; 72 72 73 73 /** … … 78 78 * @since 2.0.0 79 79 */ 80 const PRIORITY = 998 4;80 const PRIORITY = 9983; 81 81 82 82 /** 83 * Single instance of the CMB2_Bootstrap_22 0object83 * Single instance of the CMB2_Bootstrap_221 object 84 84 * 85 * @var CMB2_Bootstrap_22 085 * @var CMB2_Bootstrap_221 86 86 */ 87 87 public static $single_instance = null; 88 88 89 89 /** 90 * Creates/returns the single instance CMB2_Bootstrap_22 0object90 * Creates/returns the single instance CMB2_Bootstrap_221 object 91 91 * 92 92 * @since 2.0.0 93 * @return CMB2_Bootstrap_22 0Single instance object93 * @return CMB2_Bootstrap_221 Single instance object 94 94 */ 95 95 public static function initiate() { … … 142 142 143 143 // Include helper functions 144 require_once 'includes/CMB2.php'; 144 145 require_once 'includes/helper-functions.php'; 145 146 … … 179 180 180 181 // Make it so... 181 CMB2_Bootstrap_22 0::initiate();182 CMB2_Bootstrap_221::initiate(); 182 183 183 184 } cmb2/trunk/languages/cmb2.pot
r1359900 r1361184 3 3 msgid "" 4 4 msgstr "" 5 "Project-Id-Version: CMB2 2.2. 0\n"5 "Project-Id-Version: CMB2 2.2.1\n" 6 6 "Report-Msgid-Bugs-To: http://wordpress.org/support/plugin/cmb2\n" 7 "POT-Creation-Date: 2016-02-2 8 04:30:43+00:00\n"7 "POT-Creation-Date: 2016-02-29 22:09:14+00:00\n" 8 8 "MIME-Version: 1.0\n" 9 9 "Content-Type: text/plain; charset=utf-8\n" 10 10 "Content-Transfer-Encoding: 8bit\n" 11 "PO-Revision-Date: 2016-2-2 7 4:30+300\n"11 "PO-Revision-Date: 2016-2-29 22:9+300\n" 12 12 "Last-Translator: WebDevStudios [email protected]\n" 13 13 "Language-Team: WebDevStudios [email protected]\n" cmb2/trunk/readme.txt
r1360834 r1361184 5 5 Requires at least: 3.8.0 6 6 Tested up to: 4.4.2 7 Stable tag: 2.2. 07 Stable tag: 2.2.1 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 78 78 ### Most Recent Changes 79 79 80 #### 2.2.1 81 82 ##### Bug Fixes 83 84 * Fixes back-compatibility issue which could allow multiple CMB2 instances to load (causing fatal errors). ([#520](https://.com/WebDevStudios/CMB2/pull/520)) 85 80 86 #### 2.2.0 81 87 … … 132 138 133 139 == Changelog == 140 141 ### 2.2.1 142 143 #### Bug Fixes 144 145 * Fixes back-compatibility issue which could allow multiple CMB2 instances to load (causing fatal errors). ([#520](https://.com/WebDevStudios/CMB2/pull/520)) 134 146 135 147 ### 2.2.0 - 2016-02-27 … … 558 570 == Upgrade Notice == 559 571 572 ### 2.2.1 573 574 #### Bug Fixes 575 576 * CRITICAL UPDATE: Fixes back-compatibility issue which could allow multiple CMB2 instances to load (causing fatal errors). ([#520](https://.com/WebDevStudios/CMB2/pull/520)) 577 560 578 ### 2.2.0 - 2016-02-27 561 579
Note: See TracChangeset for help on using the changeset viewer.