Version Description
Download this release
Release Info
Developer | stevengliebe |
Plugin | Widget Importer & Exporter |
Version | 1.4.1 |
Comparing to | |
See all releases |
Code changes from version 1.4 to 1.4.1
- includes/mime-types.php +1 -1
- readme.txt +1 -1
- widget-importer-exporter.php +1 -1
includes/mime-types.php
CHANGED
@@ -47,7 +47,7 @@ add_filter( 'upload_mimes', 'wie_add_mime_types' );
|
|
47 |
function wie_disable_real_mime_check( $data, $file, $filename, $mimes ) {
|
48 |
|
49 |
// WordPress 4.7.1 only
|
50 |
-
if ( get_bloginfo( 'version' )
|
51 |
return;
|
52 |
}
|
53 |
|
47 |
function wie_disable_real_mime_check( $data, $file, $filename, $mimes ) {
|
48 |
|
49 |
// WordPress 4.7.1 only
|
50 |
+
if ( get_bloginfo( 'version' ) != '4.7.1' ) {
|
51 |
return;
|
52 |
}
|
53 |
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Donate link: https://churchthemes.com/project-support/
|
|
4 |
Tags: widgets, widget, importer, exporter, import, export, widget import, widget export, widget importer, widget exporter, backup, migration
|
5 |
Requires at least: 3.5
|
6 |
Tested up to: 4.7.1
|
7 |
-
Stable tag: 1.4
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
4 |
Tags: widgets, widget, importer, exporter, import, export, widget import, widget export, widget importer, widget exporter, backup, migration
|
5 |
Requires at least: 3.5
|
6 |
Tested up to: 4.7.1
|
7 |
+
Stable tag: 1.4.1
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
widget-importer-exporter.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
* Plugin Name: Widget Importer & Exporter
|
4 |
* Plugin URI: https://churchthemes.com/plugins/widget-importer-exporter
|
5 |
* Description: Imports and exports widgets.
|
6 |
-
* Version: 1.4
|
7 |
* Author: churchthemes.com
|
8 |
* Author URI: https://churchthemes.com
|
9 |
* License: http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
|
3 |
* Plugin Name: Widget Importer & Exporter
|
4 |
* Plugin URI: https://churchthemes.com/plugins/widget-importer-exporter
|
5 |
* Description: Imports and exports widgets.
|
6 |
+
* Version: 1.4.1
|
7 |
* Author: churchthemes.com
|
8 |
* Author URI: https://churchthemes.com
|
9 |
* License: http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
|