Changeset 2244284
- Timestamp:
- 02/14/2020 07:35:10 AM (6 years ago)
- Location:
- wp-performance/trunk
- Files:
-
- 4 edited
-
includes/addons/prefetch/prefetch.php (modified) (1 diff)
-
includes/classes/parser.php (modified) (1 diff)
-
readme.txt (modified) (1 diff)
-
wp-performance.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
wp-performance/trunk/includes/addons/prefetch/prefetch.php
r2241355 r2244284 30 30 if ( Option::boolval( 'prefetch_pages' ) && Option::boolval( 'cache' ) ) { 31 31 // Parse links 32 add_ action( 'wpp_parsed_content', [ $this, 'parseLinks' ] );32 add_filter( 'wpp_parsed_content', [ $this, 'parseLinks' ] ); 33 33 // Load add-on scripts in footer 34 34 add_action( 'wp_footer', [ $this, 'loadScript' ] ); -
wp-performance/trunk/includes/classes/parser.php
r2241043 r2244284 774 774 } 775 775 776 return $html->minify( $this->html );777 778 } 779 780 781 return $this->html ;776 return $html->minify( $this->html->innertext ); 777 778 } 779 780 781 return $this->html->innertext; 782 782 783 783 } -
wp-performance/trunk/readme.txt
r2241355 r2244284 11 11 12 12 == Changelog == 13 14 = 1.1.8.2 = 15 [FIX] Prefetch add-on again 13 16 14 17 = 1.1.8.1 = -
wp-performance/trunk/wp-performance.php
r2241355 r2244284 4 4 * Plugin URI: https://www.wp-performance.com 5 5 * Description: WP Performance Optimizer 6 * Version: 1.1.8. 16 * Version: 1.1.8.2 7 7 * Author: Ante Laca 8 8 * Author URI: https://www.antelaca.xyz … … 15 15 16 16 // WP Performance 17 define( 'WPP_VERSION' , '1.1.8. 1' );17 define( 'WPP_VERSION' , '1.1.8.2' ); 18 18 define( 'WPP_SELF' , __FILE__ ); 19 19 define( 'WPP_URI' , plugin_dir_url( __FILE__ ) );
Note: See TracChangeset
for help on using the changeset viewer.