Plugin Directory

Changeset 1929455


Ignore:
Timestamp:
08/24/2018 01:12:01 AM (8 years ago)
Author:
sfarrell5123
Message:

tag 2.18.8 bug fix bot_page where count is zero

Location:
wp-hosting-performance-check
Files:
6 edited
1 copied

Legend:

Unmodified
Added
Removed
  • wp-hosting-performance-check/tags/2.18.8/bots_page.php

    r1928369 r1929455  
    147147
    148148$data_count = $wpdb->get_var( "SELECT sum(sr) FROM $table_name where secs=0 and (datetime between '$prevdate' and '$date') " .wphpc_get_useragent_exclusion());
     149if ($data_count >0){
    149150$BotResults['Unidentified Bots']=$data_count;
    150 
     151}
    151152
    152153$data_count = $wpdb->get_var( "SELECT sum(sr) FROM $table_name where secs>0 and (datetime between '$prevdate' and '$date') " .wphpc_get_useragent_exclusion());
     154if ($data_count >0){
    153155$BotResults['Humans']=$data_count;
    154 
     156}
    155157
    156158$pie_values="";
  • wp-hosting-performance-check/tags/2.18.8/readme.txt

    r1928369 r1929455  
    44Author: Scott Farrell
    55Contributors: sfarrell5123
    6 Version: 2.18.7
     6Version: 2.18.8
    77Tags: performance, speed, hosting, graph, benchmark, php, version, sysinfo, bot, loadtest
    88Requires at least: 3.2
    99Tested up to: 4.9.8
    10 Stable tag: 2.18.7
     10Stable tag: 2.18.8
    1111Author URI: https://www.wpdone.com.au
    1212License:     GPL2
  • wp-hosting-performance-check/tags/2.18.8/wp_host_check.php

    r1928369 r1929455  
    99Description: This plugin is used to graph your wp Hosting Performance
    1010Author: Scott Farrell
    11 Version: 2.18.7
     11Version: 2.18.8
    1212Author URI: https://www.wpdone.com.au
    1313License:     GPL2
     
    3333include_once ('vendor/persist-admin-notices-dismissal.php');
    3434
    35 define( 'WPHPC_VERSION', '2.18.7' );
     35define( 'WPHPC_VERSION', '2.18.8' );
    3636define( 'WPHPC__MINIMUM_WP_VERSION', '3.2' );
    3737define( 'WPHPC__PLUGIN_URL', plugin_dir_url( __FILE__ ) );
  • wp-hosting-performance-check/trunk/bots_page.php

    r1928369 r1929455  
    147147
    148148$data_count = $wpdb->get_var( "SELECT sum(sr) FROM $table_name where secs=0 and (datetime between '$prevdate' and '$date') " .wphpc_get_useragent_exclusion());
     149if ($data_count >0){
    149150$BotResults['Unidentified Bots']=$data_count;
    150 
     151}
    151152
    152153$data_count = $wpdb->get_var( "SELECT sum(sr) FROM $table_name where secs>0 and (datetime between '$prevdate' and '$date') " .wphpc_get_useragent_exclusion());
     154if ($data_count >0){
    153155$BotResults['Humans']=$data_count;
    154 
     156}
    155157
    156158$pie_values="";
  • wp-hosting-performance-check/trunk/readme.txt

    r1928369 r1929455  
    44Author: Scott Farrell
    55Contributors: sfarrell5123
    6 Version: 2.18.7
     6Version: 2.18.8
    77Tags: performance, speed, hosting, graph, benchmark, php, version, sysinfo, bot, loadtest
    88Requires at least: 3.2
    99Tested up to: 4.9.8
    10 Stable tag: 2.18.7
     10Stable tag: 2.18.8
    1111Author URI: https://www.wpdone.com.au
    1212License:     GPL2
  • wp-hosting-performance-check/trunk/wp_host_check.php

    r1928369 r1929455  
    99Description: This plugin is used to graph your wp Hosting Performance
    1010Author: Scott Farrell
    11 Version: 2.18.7
     11Version: 2.18.8
    1212Author URI: https://www.wpdone.com.au
    1313License:     GPL2
     
    3333include_once ('vendor/persist-admin-notices-dismissal.php');
    3434
    35 define( 'WPHPC_VERSION', '2.18.7' );
     35define( 'WPHPC_VERSION', '2.18.8' );
    3636define( 'WPHPC__MINIMUM_WP_VERSION', '3.2' );
    3737define( 'WPHPC__PLUGIN_URL', plugin_dir_url( __FILE__ ) );
Note: See TracChangeset for help on using the changeset viewer.