Version Description
- 2022-12-06 =
- Fix error getting license key
Download this release
Release Info
Developer | rilwis |
Plugin | Meta Box |
Version | 5.6.12 |
Comparing to | |
See all releases |
Code changes from version 5.6.11 to 5.6.12
- inc/loader.php +1 -1
- inc/update/option.php +1 -1
- meta-box.php +1 -1
- readme.txt +4 -1
inc/loader.php
CHANGED
@@ -7,7 +7,7 @@
|
|
7 |
class RWMB_Loader {
|
8 |
protected function constants() {
|
9 |
// Script version, used to add version for scripts and styles.
|
10 |
-
define( 'RWMB_VER', '5.6.
|
11 |
|
12 |
list( $path, $url ) = self::get_path( dirname( __DIR__ ) );
|
13 |
|
7 |
class RWMB_Loader {
|
8 |
protected function constants() {
|
9 |
// Script version, used to add version for scripts and styles.
|
10 |
+
define( 'RWMB_VER', '5.6.12' );
|
11 |
|
12 |
list( $path, $url ) = self::get_path( dirname( __DIR__ ) );
|
13 |
|
inc/update/option.php
CHANGED
@@ -25,7 +25,7 @@ class RWMB_Update_Option {
|
|
25 |
}
|
26 |
|
27 |
public function get_api_key() : string {
|
28 |
-
return defined( 'META_BOX_KEY' ) ? META_BOX_KEY : $this->get( 'api_key' );
|
29 |
}
|
30 |
|
31 |
public function get_license_status() : string {
|
25 |
}
|
26 |
|
27 |
public function get_api_key() : string {
|
28 |
+
return defined( 'META_BOX_KEY' ) ? META_BOX_KEY : $this->get( 'api_key', '' );
|
29 |
}
|
30 |
|
31 |
public function get_license_status() : string {
|
meta-box.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
* Plugin Name: Meta Box
|
4 |
* Plugin URI: https://metabox.io
|
5 |
* Description: Create custom meta boxes and custom fields in WordPress.
|
6 |
-
* Version: 5.6.
|
7 |
* Author: MetaBox.io
|
8 |
* Author URI: https://metabox.io
|
9 |
* License: GPL2+
|
3 |
* Plugin Name: Meta Box
|
4 |
* Plugin URI: https://metabox.io
|
5 |
* Description: Create custom meta boxes and custom fields in WordPress.
|
6 |
+
* Version: 5.6.12
|
7 |
* Author: MetaBox.io
|
8 |
* Author URI: https://metabox.io
|
9 |
* License: GPL2+
|
readme.txt
CHANGED
@@ -5,7 +5,7 @@ Tags: meta box, custom fields, custom post types, custom taxonomies, cpt, meta b
|
|
5 |
Requires at least: 4.8
|
6 |
Requires PHP: 7.0
|
7 |
Tested up to: 6.1.1
|
8 |
-
Stable tag: 5.6.
|
9 |
License: GPLv2 or later
|
10 |
|
11 |
Meta Box plugin is a powerful, professional developer toolkit to create custom meta boxes and custom fields for your custom post types in WordPress.
|
@@ -177,6 +177,9 @@ To getting started with the plugin, please read the [Quick Start Guide](https://
|
|
177 |
|
178 |
== Changelog ==
|
179 |
|
|
|
|
|
|
|
180 |
= 5.6.11 - 2022-12-06 =
|
181 |
- Fix compatibility with other extensions
|
182 |
|
5 |
Requires at least: 4.8
|
6 |
Requires PHP: 7.0
|
7 |
Tested up to: 6.1.1
|
8 |
+
Stable tag: 5.6.12
|
9 |
License: GPLv2 or later
|
10 |
|
11 |
Meta Box plugin is a powerful, professional developer toolkit to create custom meta boxes and custom fields for your custom post types in WordPress.
|
177 |
|
178 |
== Changelog ==
|
179 |
|
180 |
+
= 5.6.12 - 2022-12-06 =
|
181 |
+
- Fix error getting license key
|
182 |
+
|
183 |
= 5.6.11 - 2022-12-06 =
|
184 |
- Fix compatibility with other extensions
|
185 |
|