Changeset 360


Ignore:
Timestamp:
Oct 19, 2009 8:50:11 AM (15 years ago)
Author:
quinn
Message:

Increased log_multiple_timeout default to 300 seconds.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/lib/App.inc.php

    r359 r360  
    107107
    108108        // Don't email or sms duplicate messages that happen more often than this value (in seconds).
    109         'log_multiple_timeout' => 61,
     109        'log_multiple_timeout' => 300,
    110110
    111111        // Logging priority can be any of the following, or false to deactivate:
     
    566566            $msg_last_sent = filectime($temp_file);
    567567            // Has this message been sent more recently than the timeout?
    568             if ((time() - $msg_last_sent) < $this->getParam('log_multiple_timeout')) {
     568            if ((time() - $msg_last_sent) <= $this->getParam('log_multiple_timeout')) {
    569569                // This message was already sent recently.
    570570                $send_notifications = false;
Note: See TracChangeset for help on using the changeset viewer.