WP Hide & Security Enhancer - Version 1.3.5.1

Version Description

  • Fix the Remove general classes from images component when within admin dashboard
Download this release

Release Info

Developer nsp-code
Plugin Icon 128x128 WP Hide & Security Enhancer
Version 1.3.5.1
Comparing to
See all releases

Code changes from version 1.3.5 to 1.3.5.1

include/wph.class.php CHANGED
@@ -378,7 +378,7 @@
378
 
379
  if(isset($response_headers['Content-Encoding']) && $response_headers['Content-Encoding'] == "gzip")
380
  {
381
- //Codes the buffer
382
  $buffer = gzencode($buffer);
383
  }
384
 
378
 
379
  if(isset($response_headers['Content-Encoding']) && $response_headers['Content-Encoding'] == "gzip")
380
  {
381
+ //compress the buffer
382
  $buffer = gzencode($buffer);
383
  }
384
 
modules/components/general-html.php CHANGED
@@ -291,6 +291,11 @@
291
 
292
  function ob_start_callback_clean_image_classes( $buffer )
293
  {
 
 
 
 
 
294
  if ( ! class_exists( 'DOMDocument', false ) )
295
  return $buffer;
296
 
291
 
292
  function ob_start_callback_clean_image_classes( $buffer )
293
  {
294
+
295
+ if(is_admin())
296
+ return $buffer;
297
+
298
+
299
  if ( ! class_exists( 'DOMDocument', false ) )
300
  return $buffer;
301
 
readme.txt CHANGED
@@ -4,7 +4,8 @@ Donate link: http://www.nsp-code.com/donate.php
4
  Tags: hide, security, improve security, hacking, wp hide, wordpress hide, custom login url, wp-loging.php, ap-admin
5
  Requires at least: 2.8
6
  Tested up to: 4.6
7
- Stable tag: 1.3.5
 
8
 
9
  Hide and increase Security for your WordPress website instance using smart techniques. No files are changed on your server.
10
 
@@ -220,6 +221,9 @@ Please get in touch with us and we'll do our best to include it for a next versi
220
 
221
  == Changelog ==
222
 
 
 
 
223
  = 1.3.5 =
224
  * New component element : Remove general classes from body tag
225
  * New component element : Remove general classes from post
4
  Tags: hide, security, improve security, hacking, wp hide, wordpress hide, custom login url, wp-loging.php, ap-admin
5
  Requires at least: 2.8
6
  Tested up to: 4.6
7
+ Stable tag: 1.3.5.1
8
+ License: GPLv2 or later
9
 
10
  Hide and increase Security for your WordPress website instance using smart techniques. No files are changed on your server.
11
 
221
 
222
  == Changelog ==
223
 
224
+ = 1.3.5.1 =
225
+ * Fix the Remove general classes from images component when within admin dashboard
226
+
227
  = 1.3.5 =
228
  * New component element : Remove general classes from body tag
229
  * New component element : Remove general classes from post
wp-hide.php CHANGED
@@ -5,7 +5,7 @@ Plugin URI: http://www.nsp-code.com
5
  Description: Hide and increase Security for your WordPress website instance using smart techniques. No files are changed on your server.
6
  Author: Nsp Code
7
  Author URI: http://www.nsp-code.com
8
- Version: 1.3.5
9
  Text Domain: wp-hide-security-enhancer
10
  Domain Path: /languages/
11
  */
5
  Description: Hide and increase Security for your WordPress website instance using smart techniques. No files are changed on your server.
6
  Author: Nsp Code
7
  Author URI: http://www.nsp-code.com
8
+ Version: 1.3.5.1
9
  Text Domain: wp-hide-security-enhancer
10
  Domain Path: /languages/
11
  */