Simple 301 Redirects – Addon – Bulk Uploader - Version 1.0.12

Version Description

  • Updated permissions to match that of the parent plugin
  • Another mime type added
  • Added icons for WP4.0
Download this release

Release Info

Developer ashdurham
Plugin Icon 128x128 Simple 301 Redirects – Addon – Bulk Uploader
Version 1.0.12
Comparing to
See all releases

Code changes from version 1.0.11 to 1.0.12

Files changed (2) hide show
  1. readme.txt +12 -2
  2. simple-301-bulk-uploader.php +3 -2
readme.txt CHANGED
@@ -3,8 +3,8 @@ Contributors: ashdurham
3
  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.9.1
7
- Stable tag: 1.0.11
8
  License: GPLv2
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -68,6 +68,11 @@ Have a question thats not listed? Get support either on the support forums here
68
 
69
  == Changelog ==
70
 
 
 
 
 
 
71
  = 1.0.11 =
72
  * Addition of another mime type
73
  * Addition of some error code to help determine mime type issues
@@ -107,6 +112,11 @@ Have a question thats not listed? Get support either on the support forums here
107
 
108
  == Upgrade Notice ==
109
 
 
 
 
 
 
110
  = 1.0.11 =
111
  * Addition of another mime type
112
  * Addition of some error code to help determine mime type issues
3
  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: 4.0
7
+ Stable tag: 1.0.12
8
  License: GPLv2
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
68
 
69
  == Changelog ==
70
 
71
+ = 1.0.12 =
72
+ * Updated permissions to match that of the parent plugin
73
+ * Another mime type added
74
+ * Added icons for WP4.0
75
+
76
  = 1.0.11 =
77
  * Addition of another mime type
78
  * Addition of some error code to help determine mime type issues
112
 
113
  == Upgrade Notice ==
114
 
115
+ = 1.0.12 =
116
+ * Updated permissions to match that of the parent plugin
117
+ * Another mime type added
118
+ * Added icons for WP4.0
119
+
120
  = 1.0.11 =
121
  * Addition of another mime type
122
  * Addition of some error code to help determine mime type issues
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.11
7
  Author: Ash Durham
8
  Author URI: http://durham.net.au/
9
  License: GPL2
@@ -52,7 +52,7 @@ if (!class_exists("Bulk301Uploader")) {
52
  */
53
  function create_bulk_menu()
54
  {
55
- add_options_page('301 Bulk Redirects', '301 Bulk Redirects', 'administrator', '301bulkoptions', array($this,'bulk_options_page'));
56
  }
57
 
58
  /*
@@ -113,6 +113,7 @@ if (!class_exists("Bulk301Uploader")) {
113
  'text/anytext',
114
  'text/csv',
115
  'text/x-csv',
 
116
  'text/comma-separated-values'
117
  );
118
 
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.12
7
  Author: Ash Durham
8
  Author URI: http://durham.net.au/
9
  License: GPL2
52
  */
53
  function create_bulk_menu()
54
  {
55
+ add_options_page('301 Bulk Redirects', '301 Bulk Redirects', 'manage_options', '301bulkoptions', array($this,'bulk_options_page'));
56
  }
57
 
58
  /*
113
  'text/anytext',
114
  'text/csv',
115
  'text/x-csv',
116
+ 'text/plain',
117
  'text/comma-separated-values'
118
  );
119