Version Description
Nothing for now
Download this release
Release Info
Developer | alticreation |
Plugin | Protect uploads |
Version | 0.5.2 |
Comparing to | |
See all releases |
Code changes from version 0.5.1 to 0.5.2
- admin/class-protect-uploads-admin.php +0 -9
- includes/class-protect-uploads.php +1 -1
- protect-uploads.php +1 -1
- readme.txt +5 -2
admin/class-protect-uploads-admin.php
CHANGED
@@ -139,14 +139,6 @@ class Alti_ProtectUploads_Admin
|
|
139 |
<p><?php _e('Visit your', $this->plugin_name); ?> <a href="<?php echo $this->get_uploads_url(); ?>" target="_blank"><strong><?php _e('uploads directory', $this->plugin_name); ?></strong><span style="text-decoration:none;" class="dashicons dashicons-external"></span></a> <?php _e('to check the current protection', $this->plugin_name); ?>.</p>
|
140 |
</td>
|
141 |
</tr>
|
142 |
-
<tr>
|
143 |
-
<th scope="row">
|
144 |
-
<label for=""><?php _e('Support', $this->plugin_name); ?></label>
|
145 |
-
</th>
|
146 |
-
<td>
|
147 |
-
<p><?php _e('Protect Uploads Plugin <a href="https://wordpress.org/support/plugin/protect-uploads/" target="_blank">support page</a>.', $this->plugin_name); ?></p>
|
148 |
-
</td>
|
149 |
-
</tr>
|
150 |
<tr>
|
151 |
<th scope="row">
|
152 |
</th>
|
@@ -292,7 +284,6 @@ class Alti_ProtectUploads_Admin
|
|
292 |
|
293 |
public function enqueue_styles()
|
294 |
{
|
295 |
-
wp_enqueue_style($this->plugin_name, plugin_dir_url(__FILE__) . 'assets/css/protect-uploads-admin.css', array(), $this->version, 'all');
|
296 |
}
|
297 |
|
298 |
public function add_settings_link($links)
|
139 |
<p><?php _e('Visit your', $this->plugin_name); ?> <a href="<?php echo $this->get_uploads_url(); ?>" target="_blank"><strong><?php _e('uploads directory', $this->plugin_name); ?></strong><span style="text-decoration:none;" class="dashicons dashicons-external"></span></a> <?php _e('to check the current protection', $this->plugin_name); ?>.</p>
|
140 |
</td>
|
141 |
</tr>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
142 |
<tr>
|
143 |
<th scope="row">
|
144 |
</th>
|
284 |
|
285 |
public function enqueue_styles()
|
286 |
{
|
|
|
287 |
}
|
288 |
|
289 |
public function add_settings_link($links)
|
includes/class-protect-uploads.php
CHANGED
@@ -9,7 +9,7 @@ class Alti_ProtectUploads
|
|
9 |
|
10 |
public function __construct()
|
11 |
{
|
12 |
-
$this->version = '0.5.
|
13 |
$this->plugin_name = 'protect-uploads';
|
14 |
$this->load_dependencies();
|
15 |
$this->set_locale();
|
9 |
|
10 |
public function __construct()
|
11 |
{
|
12 |
+
$this->version = '0.5.2';
|
13 |
$this->plugin_name = 'protect-uploads';
|
14 |
$this->load_dependencies();
|
15 |
$this->set_locale();
|
protect-uploads.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
* Plugin Name: Protect Uploads
|
4 |
* Plugin URI: https://wordpress.org/support/plugin/protect-uploads/
|
5 |
* Description: Protect your uploads directory. Avoid browsing of your uploads directory by adding a htaccess file or an index.php file.
|
6 |
-
* Version: 0.5.
|
7 |
* Author: alticreation
|
8 |
* License: GPL-2.0+
|
9 |
* License URI: http://www.gnu.org/licenses/gpl-2.0.txt
|
3 |
* Plugin Name: Protect Uploads
|
4 |
* Plugin URI: https://wordpress.org/support/plugin/protect-uploads/
|
5 |
* Description: Protect your uploads directory. Avoid browsing of your uploads directory by adding a htaccess file or an index.php file.
|
6 |
+
* Version: 0.5.2
|
7 |
* Author: alticreation
|
8 |
* License: GPL-2.0+
|
9 |
* License URI: http://www.gnu.org/licenses/gpl-2.0.txt
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Tags: uploads, protection, images protection, browsing images, uploads folder, i
|
|
4 |
Requires at least: 3.0.1
|
5 |
Tested up to: 6.0.1
|
6 |
Requires PHP: 7.0
|
7 |
-
Stable tag: 0.5.
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -60,4 +60,7 @@ Nothing for now
|
|
60 |
|
61 |
= 0.4 =
|
62 |
* Fix potential security issues.
|
63 |
-
* Remove recursive loop that creates indexes.
|
|
|
|
|
|
4 |
Requires at least: 3.0.1
|
5 |
Tested up to: 6.0.1
|
6 |
Requires PHP: 7.0
|
7 |
+
Stable tag: 0.5.2
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
60 |
|
61 |
= 0.4 =
|
62 |
* Fix potential security issues.
|
63 |
+
* Remove recursive loop that creates indexes.
|
64 |
+
|
65 |
+
= 0.5.2 =
|
66 |
+
* Removed unused css
|