Version Description
Download this release
Release Info
Developer | wp_media |
Plugin | Increase Max Upload Filesize |
Version | 2.0.1 |
Comparing to | |
See all releases |
Code changes from version 2.0 to 2.0.1
- readme.txt +5 -1
- upload-max-file-size.php +2 -2
- upload_max_file_size.php +3 -0
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Tags: max upload file size, increase upload limit, increase file size limit, upl
|
|
4 |
Requires at least: 3.0
|
5 |
Requires PHP: 5.3
|
6 |
Tested up to: 5.3
|
7 |
-
Stable tag: 2.0
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -55,6 +55,10 @@ Yes, it works with all servers. But, please know that server adjusted limits can
|
|
55 |
|
56 |
== Changelog ==
|
57 |
|
|
|
|
|
|
|
|
|
58 |
= v2.0 =
|
59 |
* 2019/11/04
|
60 |
* Revamp the settings page.
|
4 |
Requires at least: 3.0
|
5 |
Requires PHP: 5.3
|
6 |
Tested up to: 5.3
|
7 |
+
Stable tag: 2.0.1
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
55 |
|
56 |
== Changelog ==
|
57 |
|
58 |
+
= v2.0.1 =
|
59 |
+
* 2019/11/13
|
60 |
+
* Regression fix: Avoid auto-deactivation after upgrading to 2.0.
|
61 |
+
|
62 |
= v2.0 =
|
63 |
* 2019/11/04
|
64 |
* Revamp the settings page.
|
upload-max-file-size.php
CHANGED
@@ -5,14 +5,14 @@
|
|
5 |
* Author: Imagify
|
6 |
* Author URI: https://wordpress.org/plugins/imagify/
|
7 |
* Plugin URI: https://wordpress.org/plugins/upload-max-file-size/
|
8 |
-
* Version: 2.0
|
9 |
* License: GPL2
|
10 |
* Text Domain: upload-max-file-size
|
11 |
*/
|
12 |
|
13 |
namespace UMFS;
|
14 |
|
15 |
-
define( 'UMFS_VERSION', '2.0' );
|
16 |
define( 'UMFS_PLUGIN_PATH', plugin_dir_path( __FILE__ ) );
|
17 |
define( 'UMFS_PLUGIN_URL', plugin_dir_url( __FILE__ ) );
|
18 |
|
5 |
* Author: Imagify
|
6 |
* Author URI: https://wordpress.org/plugins/imagify/
|
7 |
* Plugin URI: https://wordpress.org/plugins/upload-max-file-size/
|
8 |
+
* Version: 2.0.1
|
9 |
* License: GPL2
|
10 |
* Text Domain: upload-max-file-size
|
11 |
*/
|
12 |
|
13 |
namespace UMFS;
|
14 |
|
15 |
+
define( 'UMFS_VERSION', '2.0.1' );
|
16 |
define( 'UMFS_PLUGIN_PATH', plugin_dir_path( __FILE__ ) );
|
17 |
define( 'UMFS_PLUGIN_URL', plugin_dir_url( __FILE__ ) );
|
18 |
|
upload_max_file_size.php
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
// Avoid auto-deactivation after upgrading to 2.0.
|
3 |
+
require_once plugin_dir_path( __FILE__ ) . 'upload-max-file-size.php';
|