Version Description
Fixed problem of category for Add On.
Download this release
Release Info
Developer | Katsushi Kawamori |
Plugin | Media from FTP |
Version | 9.92 |
Comparing to | |
See all releases |
Code changes from version 9.91 to 9.92
- mediafromftp.php +1 -1
- readme.txt +4 -1
- req/MediaFromFtpListTable.php +1 -1
mediafromftp.php
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
/*
|
3 |
Plugin Name: Media from FTP
|
4 |
Plugin URI: https://wordpress.org/plugins/media-from-ftp/
|
5 |
-
Version: 9.
|
6 |
Description: Register to media library from files that have been uploaded by FTP.
|
7 |
Author: Katsushi Kawamori
|
8 |
Author URI: https://riverforest-wp.info/
|
2 |
/*
|
3 |
Plugin Name: Media from FTP
|
4 |
Plugin URI: https://wordpress.org/plugins/media-from-ftp/
|
5 |
+
Version: 9.92
|
6 |
Description: Register to media library from files that have been uploaded by FTP.
|
7 |
Author: Katsushi Kawamori
|
8 |
Author URI: https://riverforest-wp.info/
|
readme.txt
CHANGED
@@ -5,7 +5,7 @@ Tags: files, ftp, import, media, sync, uploads
|
|
5 |
Requires at least: 3.6.0
|
6 |
Requires PHP: 5.3.0
|
7 |
Tested up to: 4.9
|
8 |
-
Stable tag: 9.
|
9 |
License: GPLv2 or later
|
10 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
11 |
|
@@ -125,6 +125,9 @@ Register to media library from files that have been uploaded by FTP.
|
|
125 |
|
126 |
== Changelog ==
|
127 |
|
|
|
|
|
|
|
128 |
= 9.91 =
|
129 |
Added file recursive search option.
|
130 |
|
5 |
Requires at least: 3.6.0
|
6 |
Requires PHP: 5.3.0
|
7 |
Tested up to: 4.9
|
8 |
+
Stable tag: 9.92
|
9 |
License: GPLv2 or later
|
10 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
11 |
|
125 |
|
126 |
== Changelog ==
|
127 |
|
128 |
+
= 9.92 =
|
129 |
+
Fixed problem of category for Add On.
|
130 |
+
|
131 |
= 9.91 =
|
132 |
Added file recursive search option.
|
133 |
|
req/MediaFromFtpListTable.php
CHANGED
@@ -56,7 +56,7 @@ class TT_MediaFromFtp_List_Table extends WP_List_Table {
|
|
56 |
|
57 |
// Media Library Categories
|
58 |
$mlc_active = FALSE;
|
59 |
-
if (
|
60 |
$mlc_active = TRUE;
|
61 |
}
|
62 |
|
56 |
|
57 |
// Media Library Categories
|
58 |
$mlc_active = FALSE;
|
59 |
+
if ( class_exists( 'wpMediaLibraryCategories' ) ) {
|
60 |
$mlc_active = TRUE;
|
61 |
}
|
62 |
|