Plugin Directory

Changeset 2081785


Ignore:
Timestamp:
05/06/2019 06:52:02 PM (7 years ago)
Author:
GTmetrix
Message:

Version 0.4.4

Location:
gtmetrix-for-wordpress
Files:
1 deleted
2 edited
10 copied

Legend:

Unmodified
Added
Removed
  • gtmetrix-for-wordpress/tags/0.4.4/gtmetrix-for-wordpress.php

    r1982942 r2081785  
    716716        } else {
    717717
    718             require_once('lib/Services_WTF_Test.php');
     718            if ( !class_exists( 'Services_WTF_Test' ) ) {
     719                require_once('lib/Services_WTF_Test.php');
     720            }
    719721            $test = new Services_WTF_Test();
    720722            $test->api_username( $valid['api_username'] );
     
    10521054    protected function api() {
    10531055        $options = get_option( 'gfw_options' );
    1054         require_once('lib/Services_WTF_Test.php');
     1056
     1057        if ( !class_exists( 'Services_WTF_Test' ) ) {
     1058            require_once('lib/Services_WTF_Test.php');
     1059        }
    10551060        $api = new Services_WTF_Test();
    10561061        $api->api_username( $options['api_username'] );
  • gtmetrix-for-wordpress/tags/0.4.4/readme.txt

    r1988442 r2081785  
    33Tags: analytics, gtmetrix, monitoring, optimization, page speed, performance, speed, statistics, yslow
    44Requires at least: 3.3.1
    5 Tested up to: 5.0
    6 Stable tag: 0.4.3
     5Tested up to: 5.2
     6Stable tag: 0.4.4
    77
    88GTmetrix can help you develop a faster, more efficient, and all-around improved website experience for your users. Your users will love you for it.
     
    4242
    4343== Changelog ==
     44
     45= 0.4.4 =
     46* Fixed compatibility issues with other plugins using the Services_WTF_Test class
    4447
    4548= 0.4.3 =
  • gtmetrix-for-wordpress/trunk/gtmetrix-for-wordpress.php

    r1982942 r2081785  
    716716        } else {
    717717
    718             require_once('lib/Services_WTF_Test.php');
     718            if ( !class_exists( 'Services_WTF_Test' ) ) {
     719                require_once('lib/Services_WTF_Test.php');
     720            }
    719721            $test = new Services_WTF_Test();
    720722            $test->api_username( $valid['api_username'] );
     
    10521054    protected function api() {
    10531055        $options = get_option( 'gfw_options' );
    1054         require_once('lib/Services_WTF_Test.php');
     1056
     1057        if ( !class_exists( 'Services_WTF_Test' ) ) {
     1058            require_once('lib/Services_WTF_Test.php');
     1059        }
    10551060        $api = new Services_WTF_Test();
    10561061        $api->api_username( $options['api_username'] );
  • gtmetrix-for-wordpress/trunk/readme.txt

    r1988442 r2081785  
    33Tags: analytics, gtmetrix, monitoring, optimization, page speed, performance, speed, statistics, yslow
    44Requires at least: 3.3.1
    5 Tested up to: 5.0
    6 Stable tag: 0.4.3
     5Tested up to: 5.2
     6Stable tag: 0.4.4
    77
    88GTmetrix can help you develop a faster, more efficient, and all-around improved website experience for your users. Your users will love you for it.
     
    4242
    4343== Changelog ==
     44
     45= 0.4.4 =
     46* Fixed compatibility issues with other plugins using the Services_WTF_Test class
    4447
    4548= 0.4.3 =
Note: See TracChangeset for help on using the changeset viewer.