Changeset 2160422
- Timestamp:
- 09/21/2019 03:17:21 AM (7 years ago)
- Location:
- asta-html-minifier
- Files:
-
- 4 added
- 2 edited
-
tags/1.0.2 (added)
-
tags/1.0.2/asta-html-minifier.php (added)
-
tags/1.0.2/license.txt (added)
-
tags/1.0.2/readme.txt (added)
-
trunk/asta-html-minifier.php (modified) (2 diffs)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
asta-html-minifier/trunk/asta-html-minifier.php
r2084210 r2160422 5 5 Plugin URI: https://www.astavelopment.ca?utm_medium=plugin&utm_source=wordpress&utm_campaign=asta-html-minifier&utm_term=plugin 6 6 Description: Improve your website's overall performance by stripping away all extra white space and HTML comments in your HTML output across your entire website. 7 Version: 1.0. 17 Version: 1.0.2 8 8 Author: Astavelopment 9 9 Author URI: http://www.astavelopment.ca?utm_medium=plugin&utm_source=wordpress&utm_campaign=asta-html-minifier&utm_term=author … … 16 16 // constructor function 17 17 function __construct(){ 18 // adding hooks to connect with HTML output 19 add_action('wp_loaded', array('AstaHtmlMinifier', 'buffer_start')); 20 add_action('shutdown', array('AstaHtmlMinifier', 'buffer_end')); 18 // check if admin is not displayed 19 if(!is_admin()){ 20 // adding hooks to connect with HTML output 21 add_action('wp_loaded', array('AstaHtmlMinifier', 'buffer_start')); 22 add_action('shutdown', array('AstaHtmlMinifier', 'buffer_end')); 23 } 24 21 25 } 22 26 -
asta-html-minifier/trunk/readme.txt
r2084210 r2160422 74 74 * Fixing issues in readme file 75 75 76 = 1.0.2 = 77 * Fixing bug with Gutenberg editor by disabling minify HTML in admin sections 78 76 79 77 80 … … 84 87 * Now you can enjoy this plugin on any Wordpress installation from version 4.0.26 until the latest release 5.2 85 88 * Now you can install this on any version of PHP greater than 5.6.30 89 90 = 1.0.2 = 91 * Enjoy this plugin with new Gutenberg editor
Note: See TracChangeset
for help on using the changeset viewer.