]> git.mxchange.org Git - friendica.git/commitdiff
Revert random_int changes.
authordew-git <55564947+dew-git@users.noreply.github.com>
Fri, 11 Oct 2019 08:00:15 +0000 (00:00 -0800)
committerdew-git <55564947+dew-git@users.noreply.github.com>
Fri, 11 Oct 2019 08:00:15 +0000 (00:00 -0800)
src/Util/Strings.php

index ef7a2df06144ba83161d7223ea2a4865352add79..91b86fbfdc40b2b385b172c06fc80b030caaf2a9 100644 (file)
@@ -86,7 +86,7 @@ class Strings
 
         $vowels = ['a', 'a', 'ai', 'au', 'e', 'e', 'e', 'ee', 'ea', 'i', 'ie', 'o', 'ou', 'u'];
 
-        if (random_int(0, 5) == 4) {
+        if (mt_rand(0, 5) == 4) {
             $vowels[] = 'y';
         }
 
@@ -123,7 +123,7 @@ class Strings
             'kh', 'kl', 'kr', 'mn', 'pl', 'pr', 'rh', 'tr', 'qu', 'wh', 'q'
         ];
 
-        $start = random_int(0, 2);
+        $start = mt_rand(0, 2);
         if ($start == 0) {
             $table = $vowels;
         } else {
@@ -133,7 +133,7 @@ class Strings
         $word = '';
 
         for ($x = 0; $x < $len; $x++) {
-            $r = random_int(0, count($table) - 1);
+            $r = mt_rand(0, count($table) - 1);
             $word .= $table[$r];
 
             if ($table == $vowels) {