We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 8a9467b + ea25001 commit 3034bf2Copy full SHA for 3034bf2
1 file changed
backend/garbage.php
@@ -53,11 +53,7 @@ function sendHeaders()
53
$chunks = getChunkCount();
54
55
// Generate data
56
-if (function_exists('random_bytes')) {
57
- $data = random_bytes(1048576);
58
-} else {
59
- $data = openssl_random_pseudo_bytes(1048576);
60
-}
+$data = openssl_random_pseudo_bytes(1048576);
61
62
// Deliver chunks of 1048576 bytes
63
sendHeaders();
0 commit comments