Version Description
- Adding back a mistakenly removed mime type
Download this release
Release Info
Developer | ashdurham |
Plugin | Simple 301 Redirects – Addon – Bulk Uploader |
Version | 1.0.4 |
Comparing to | |
See all releases |
Code changes from version 1.0.3 to 1.0.4
- readme.txt +7 -1
- simple-301-bulk-uploader.php +2 -1
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Donate link: http://durham.net.au/donate/
|
|
4 |
Tags: simple 301 redirects, bulk upload, csv, 301, redirects
|
5 |
Requires at least: 3.0.1
|
6 |
Tested up to: 3.7.1
|
7 |
-
Stable tag: 1.0.
|
8 |
License: GPLv2
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -68,6 +68,9 @@ Have a question thats not listed? Get support either on the support forums here
|
|
68 |
|
69 |
== Changelog ==
|
70 |
|
|
|
|
|
|
|
71 |
= 1.0.3 =
|
72 |
* Addition of another mime type
|
73 |
|
@@ -82,6 +85,9 @@ Have a question thats not listed? Get support either on the support forums here
|
|
82 |
|
83 |
== Upgrade Notice ==
|
84 |
|
|
|
|
|
|
|
85 |
= 1.0.3 =
|
86 |
* Addition of another mime type
|
87 |
|
4 |
Tags: simple 301 redirects, bulk upload, csv, 301, redirects
|
5 |
Requires at least: 3.0.1
|
6 |
Tested up to: 3.7.1
|
7 |
+
Stable tag: 1.0.4
|
8 |
License: GPLv2
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
68 |
|
69 |
== Changelog ==
|
70 |
|
71 |
+
= 1.0.4 =
|
72 |
+
* Adding back a mistakenly removed mime type
|
73 |
+
|
74 |
= 1.0.3 =
|
75 |
* Addition of another mime type
|
76 |
|
85 |
|
86 |
== Upgrade Notice ==
|
87 |
|
88 |
+
= 1.0.4 =
|
89 |
+
* Adding back a mistakenly removed mime type
|
90 |
+
|
91 |
= 1.0.3 =
|
92 |
* Addition of another mime type
|
93 |
|
simple-301-bulk-uploader.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
Plugin Name: Simple 301 Redirects - Addon - Bulk CSV Uploader
|
4 |
Plugin URI: http://kingpro.me/plugins/support-plugins/simple-301-redirects-addon-bulk-csv-uploader
|
5 |
Description: Adds the ability to upload a CSV to populate the Simple 301 Redirects plugin
|
6 |
-
Version: 1.0.
|
7 |
Author: Ash Durham
|
8 |
Author URI: http://durham.net.au/
|
9 |
License: GPL2
|
@@ -102,6 +102,7 @@ if (!class_exists("Bulk301Uploader")) {
|
|
102 |
'application/vnd.msexcel',
|
103 |
'application/octet-stream',
|
104 |
'text/anytext',
|
|
|
105 |
'text/comma-separated-values'
|
106 |
);
|
107 |
|
3 |
Plugin Name: Simple 301 Redirects - Addon - Bulk CSV Uploader
|
4 |
Plugin URI: http://kingpro.me/plugins/support-plugins/simple-301-redirects-addon-bulk-csv-uploader
|
5 |
Description: Adds the ability to upload a CSV to populate the Simple 301 Redirects plugin
|
6 |
+
Version: 1.0.4
|
7 |
Author: Ash Durham
|
8 |
Author URI: http://durham.net.au/
|
9 |
License: GPL2
|
102 |
'application/vnd.msexcel',
|
103 |
'application/octet-stream',
|
104 |
'text/anytext',
|
105 |
+
'text/csv',
|
106 |
'text/comma-separated-values'
|
107 |
);
|
108 |
|