Plugin Directory

Changeset 601098


Ignore:
Timestamp:
09/19/2012 05:27:54 PM (13 years ago)
Author:
Bilbud
Message:

for network install only: fixed mininum hit count setting problem.

Location:
404-error-monitor/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • 404-error-monitor/trunk/includes/Error.php

    r599688 r601098  
    130130       
    131131        if($blogId){
    132             return $wpdb->get_results("SELECT * FROM ".errorMonitor_DataTools::getTableName()." WHERE blog_id = $blogId AND count >= ".errorMonitor_DataTools::getPluginOption("min_hit_count",true)." ".$subQuery." ".$subQuery2." ORDER BY blog_id, count DESC;");
     132            return $wpdb->get_results("SELECT * FROM ".errorMonitor_DataTools::getTableName()." WHERE blog_id = $blogId AND count >= ".errorMonitor_DataTools::getPluginOption("min_hit_count",null,true)." ".$subQuery." ".$subQuery2." ORDER BY blog_id, count DESC;");
    133133        } else {
    134             return $wpdb->get_results("SELECT * FROM ".errorMonitor_DataTools::getTableName()."  WHERE count >= ".errorMonitor_DataTools::getPluginOption("min_hit_count",true)." ".$subQuery." ".$subQuery2." ORDER BY blog_id, count DESC;");
     134            return $wpdb->get_results("SELECT * FROM ".errorMonitor_DataTools::getTableName()."  WHERE count >= ".errorMonitor_DataTools::getPluginOption("min_hit_count",null,true)." ".$subQuery." ".$subQuery2." ORDER BY blog_id, count DESC;");
    135135                   
    136136        }
  • 404-error-monitor/trunk/index.php

    r600196 r601098  
    2020 *     Plugin URI: http://www.php-geek.fr/plugin-wordpress-404-error-monitor.html
    2121 *     Description: This plugin logs 404 (Page Not Found) errors on your WordPress site. It also logs useful informations like referrer, user address, and error hit count. It is fully compatible with a multisite configuration.
    22  *     Version: 1.0.1
     22 *     Version: 1.0.2
    2323 *     Author: Bruce Delorme
    2424 *     Author URI: http://www.php-geek.fr
  • 404-error-monitor/trunk/readme.txt

    r600191 r601098  
    55Requires at least: 3.2.1
    66Tested up to: 3.4.2
    7 Stable tag: 1.0.1
     7Stable tag: 1.0.2
    88License: GPLv3
    99License URI: http://www.gnu.org/licenses/gpl-3.0.html
     
    3030= 1.0.1 =
    3131* Corrected ajax call in errorList
     32
     33= 1.0.2 =
     34* for network install only: fixed mininum hit count setting problem.
Note: See TracChangeset for help on using the changeset viewer.