Changeset 2241355
- Timestamp:
- 02/09/2020 04:55:31 PM (6 years ago)
- Location:
- wp-performance/trunk
- Files:
-
- 3 edited
-
includes/addons/prefetch/prefetch.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
r2107493 r2241355 70 70 * @since 1.1.3 71 71 */ 72 public function parseLinks( HtmlDOM $parsed) {72 public function parseLinks( $html ) { 73 73 74 $html = new HtmlDOM( $ parsed->innertext, false, false );74 $html = new HtmlDOM( $html, false, false ); 75 75 76 76 $links = $html->find( 'a' ); -
wp-performance/trunk/readme.txt
r2241043 r2241355 11 11 12 12 == Changelog == 13 14 = 1.1.8.1 = 15 [FIX] Prefetch add-on 13 16 14 17 = 1.1.8 = -
wp-performance/trunk/wp-performance.php
r2241043 r2241355 4 4 * Plugin URI: https://www.wp-performance.com 5 5 * Description: WP Performance Optimizer 6 * Version: 1.1.8 6 * Version: 1.1.8.1 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 ' );17 define( 'WPP_VERSION' , '1.1.8.1' ); 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.