diff --git a/manual/add-note.php b/manual/add-note.php index ebed1cb2e..fae45882a 100644 --- a/manual/add-note.php +++ b/manual/add-note.php @@ -80,9 +80,13 @@ if (isset($note) && isset($user) && // If there is any non-header result, then it is an error if ($result) { - echo ""; - echo "

There was an error processing your submission. It has been automatically e-mailed to the developers, who will process the note manually.

"; - } + if (strpos ($result, '[TOO MANY NOTES]') !== false) { + print "

As a security precaution, we only allow a certain number of notes to be submitted per minute. At this time, this number has been exceeded. Please re-submit your note in about a minute.

"; + } else { + echo ""; + echo "

There was an error processing your submission. It has been automatically e-mailed to the developers, who will process the note manually.

"; + } + } // There was no error returned else {