From: Tobias Diekershoff Date: Tue, 5 Jul 2016 13:45:39 +0000 (+0200) Subject: adjust the rand bounderies to be within the allowed max value X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=5b03db4a1ba1d288ce1ca87e546ca046b9b25160;p=friendica.git adjust the rand bounderies to be within the allowed max value --- diff --git a/include/Emailer.php b/include/Emailer.php index d0568f6001..b0cdc3fe63 100644 --- a/include/Emailer.php +++ b/include/Emailer.php @@ -30,8 +30,8 @@ class Emailer { // generate a mime boundary $mimeBoundary =rand(0,9)."-" - .rand(10000000000,99999999999)."-" - .rand(10000000000,99999999999)."=:" + .rand(100000000,999999999)."-" + .rand(100000000,999999999)."=:" .rand(10000,99999); // generate a multipart/alternative message header