Plugin Directory

Changeset 2244284


Ignore:
Timestamp:
02/14/2020 07:35:10 AM (6 years ago)
Author:
alaca
Message:

Update 1.1.8.2

Location:
wp-performance/trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • wp-performance/trunk/includes/addons/prefetch/prefetch.php

    r2241355 r2244284  
    3030        if ( Option::boolval( 'prefetch_pages' ) && Option::boolval( 'cache' ) ) {
    3131            // Parse links
    32             add_action( 'wpp_parsed_content', [ $this, 'parseLinks' ] );
     32            add_filter( 'wpp_parsed_content', [ $this, 'parseLinks' ] );
    3333            // Load add-on scripts in footer
    3434            add_action( 'wp_footer', [ $this, 'loadScript' ] );
  • wp-performance/trunk/includes/classes/parser.php

    r2241043 r2244284  
    774774            }
    775775
    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;
    782782
    783783    }
  • wp-performance/trunk/readme.txt

    r2241355 r2244284  
    1111
    1212== Changelog ==
     13
     14= 1.1.8.2 =
     15[FIX] Prefetch add-on again
    1316
    1417= 1.1.8.1 =
  • wp-performance/trunk/wp-performance.php

    r2241355 r2244284  
    44* Plugin URI: https://www.wp-performance.com
    55* Description: WP Performance Optimizer
    6 * Version: 1.1.8.1
     6* Version: 1.1.8.2
    77* Author: Ante Laca
    88* Author URI: https://www.antelaca.xyz
     
    1515
    1616// WP Performance
    17 define( 'WPP_VERSION'       , '1.1.8.1' );
     17define( 'WPP_VERSION'       , '1.1.8.2' );
    1818define( 'WPP_SELF'          , __FILE__ );
    1919define( 'WPP_URI'           , plugin_dir_url( __FILE__ ) );
Note: See TracChangeset for help on using the changeset viewer.