]> granicus.if.org Git - php/commitdiff
Fixed #75996: Add the right urls to the header of mt_rand.
authorTATAR Balazs Janos <tatarbj@gmail.com>
Thu, 22 Feb 2018 16:10:33 +0000 (17:10 +0100)
committerJoe Watkins <krakjoe@php.net>
Tue, 27 Mar 2018 20:09:08 +0000 (22:09 +0200)
NEWS
ext/standard/mt_rand.c

diff --git a/NEWS b/NEWS
index db2833d7926693e799fe9f9cde891452f4ed7038..600ba46c6383ed6983b4c700d7a1602133dd2240 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -14,6 +14,9 @@ PHP                                                                        NEWS
   . Fixed bug #76131 (mismatch arginfo for splarray constructor). 
     (carusogabriel)
 
+- standard:
+  . Fixed bug #75996 (incorrect url in header for mt_rand). (tatarbj)
+
 29 Mar 2018, PHP 7.1.16
 
 - Core:
index 46f23d1327aaadae3a256a5bcaff59bb103a0a3b..3d02c48d67acb3216045e4f8843121a670be4f8b 100644 (file)
@@ -34,7 +34,7 @@
 /*
        The following php_mt_...() functions are based on a C++ class MTRand by
        Richard J. Wagner. For more information see the web page at
-       http://www-personal.engin.umich.edu/~wagnerr/MersenneTwister.html
+       http://www.math.sci.hiroshima-u.ac.jp/~m-mat/MT/VERSIONS/C-LANG/MersenneTwister.h
 
        Mersenne Twister random number generator -- a C++ class MTRand
        Based on code by Makoto Matsumoto, Takuji Nishimura, and Shawn Cokus
@@ -45,7 +45,7 @@
        The period, 2^19937-1, and the order of equidistribution, 623 dimensions,
        are far greater.  The generator is also fast; it avoids multiplication and
        division, and it benefits from caches and pipelines.  For more information
-       see the inventors' web page at http://www.math.keio.ac.jp/~matumoto/emt.html
+       see the inventors' web page at http://www.math.sci.hiroshima-u.ac.jp/~m-mat/MT/emt.html
 
        Reference
        M. Matsumoto and T. Nishimura, "Mersenne Twister: A 623-Dimensionally