Version Description
Download this release
Release Info
Developer | justinbusa |
Plugin | Customizer Export/Import |
Version | 0.6 |
Comparing to | |
See all releases |
Code changes from version 0.5 to 0.6
- classes/class-cei-core.php +1 -1
- customizer-export-import.php +2 -2
- readme.txt +8 -0
classes/class-cei-core.php
CHANGED
@@ -238,7 +238,7 @@ final class CEI_Core {
|
|
238 |
// Setup internal vars.
|
239 |
$cei_error = false;
|
240 |
$template = get_template();
|
241 |
-
$overrides = array( 'test_form' =>
|
242 |
$file = wp_handle_upload( $_FILES['cei-import-file'], $overrides );
|
243 |
|
244 |
// Make sure we have an uploaded file.
|
238 |
// Setup internal vars.
|
239 |
$cei_error = false;
|
240 |
$template = get_template();
|
241 |
+
$overrides = array( 'test_form' => false, 'test_type' => false, 'mimes' => array('dat' => 'text/plain') );
|
242 |
$file = wp_handle_upload( $_FILES['cei-import-file'], $overrides );
|
243 |
|
244 |
// Make sure we have an uploaded file.
|
customizer-export-import.php
CHANGED
@@ -3,14 +3,14 @@
|
|
3 |
* Plugin Name: Customizer Export/Import
|
4 |
* Plugin URI: http://www.wpbeaverbuilder.com/wordpress-customizer-export-import-plugin/?utm_source=external&utm_medium=customizer-export&utm_campaign=plugins-page
|
5 |
* Description: Adds settings export and import functionality to the WordPress customizer.
|
6 |
-
* Version: 0.
|
7 |
* Author: The Beaver Builder Team
|
8 |
* Author URI: http://www.wpbeaverbuilder.com/?utm_source=external&utm_medium=customizer-export&utm_campaign=plugins-page
|
9 |
* License: GNU General Public License v2.0
|
10 |
* License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
11 |
* Text Domain: customizer-export-import
|
12 |
*/
|
13 |
-
define( 'CEI_VERSION', '0.
|
14 |
define( 'CEI_PLUGIN_DIR', plugin_dir_path( __FILE__ ) );
|
15 |
define( 'CEI_PLUGIN_URL', plugins_url( '/', __FILE__ ) );
|
16 |
|
3 |
* Plugin Name: Customizer Export/Import
|
4 |
* Plugin URI: http://www.wpbeaverbuilder.com/wordpress-customizer-export-import-plugin/?utm_source=external&utm_medium=customizer-export&utm_campaign=plugins-page
|
5 |
* Description: Adds settings export and import functionality to the WordPress customizer.
|
6 |
+
* Version: 0.6
|
7 |
* Author: The Beaver Builder Team
|
8 |
* Author URI: http://www.wpbeaverbuilder.com/?utm_source=external&utm_medium=customizer-export&utm_campaign=plugins-page
|
9 |
* License: GNU General Public License v2.0
|
10 |
* License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
11 |
* Text Domain: customizer-export-import
|
12 |
*/
|
13 |
+
define( 'CEI_VERSION', '0.6' );
|
14 |
define( 'CEI_PLUGIN_DIR', plugin_dir_path( __FILE__ ) );
|
15 |
define( 'CEI_PLUGIN_URL', plugins_url( '/', __FILE__ ) );
|
16 |
|
readme.txt
CHANGED
@@ -76,3 +76,11 @@ Please visit our blog for more info on the [Customizer Export/Import plugin](htt
|
|
76 |
= Version 0.3 =
|
77 |
|
78 |
- Customizer settings saved as options are now exported and imported.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
76 |
= Version 0.3 =
|
77 |
|
78 |
- Customizer settings saved as options are now exported and imported.
|
79 |
+
|
80 |
+
= Version 0.5 =
|
81 |
+
|
82 |
+
- Fixed an issue with uploads in WordPress 4.7.1.
|
83 |
+
|
84 |
+
= Version 0.6 =
|
85 |
+
|
86 |
+
- Trying another fix for the issue with uploads in WordPress 4.7.1.
|