don't time-throttle comments from Administrators

git-svn-id: https://develop.svn.wordpress.org/trunk@7425 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Mark Jaquith 2008-03-20 20:32:18 +00:00
parent 437e832125
commit 2a0b33bae4
1 changed files with 2 additions and 0 deletions

View File

@ -377,6 +377,8 @@ function wp_allow_comment($commentdata) {
*/
function check_comment_flood_db( $ip, $email, $date ) {
global $wpdb;
if ( current_user_can( 'manage_options' ) )
return; // don't throttle admins
if ( $lasttime = $wpdb->get_var("SELECT comment_date_gmt FROM $wpdb->comments WHERE comment_author_IP = '$ip' OR comment_author_email = '$email' ORDER BY comment_date DESC LIMIT 1") ) {
$time_lastcomment = mysql2date('U', $lasttime);
$time_newcomment = mysql2date('U', $date);