Changeset 601098
- Timestamp:
- 09/19/2012 05:27:54 PM (13 years ago)
- Location:
- 404-error-monitor/trunk
- Files:
-
- 3 edited
-
includes/Error.php (modified) (1 diff)
-
index.php (modified) (1 diff)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
404-error-monitor/trunk/includes/Error.php
r599688 r601098 130 130 131 131 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;"); 133 133 } 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;"); 135 135 136 136 } -
404-error-monitor/trunk/index.php
r600196 r601098 20 20 * Plugin URI: http://www.php-geek.fr/plugin-wordpress-404-error-monitor.html 21 21 * 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. 122 * Version: 1.0.2 23 23 * Author: Bruce Delorme 24 24 * Author URI: http://www.php-geek.fr -
404-error-monitor/trunk/readme.txt
r600191 r601098 5 5 Requires at least: 3.2.1 6 6 Tested up to: 3.4.2 7 Stable tag: 1.0. 17 Stable tag: 1.0.2 8 8 License: GPLv3 9 9 License URI: http://www.gnu.org/licenses/gpl-3.0.html … … 30 30 = 1.0.1 = 31 31 * 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.