You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
if ($cryptAlgoName != 'MD5' && $cryptAlgoName != 'default') {
277
+
print("<pre>\n<<< WARNING >>>\nHashing algorithm MD5 not available for crypt() in this PHP build!\n It should be available in any PHP build.\n</pre>" . PHP_EOL);
278
+
}
279
+
280
+
232
281
$cpuInfo = getCpuInfo();
233
282
// CPU throttling?
234
283
if (abs($cpuInfo['mips'] - $cpuInfo['mhz']) > 400) {
235
-
print("<pre>\n<<< WARNING >>>\nCPU is in powersaving mode? Set CPU governor to 'performance'!\nFire up CPU and recalculate MHz!\n</pre>" . PHP_EOL);
284
+
print("<pre>\n<<< WARNING >>>\nCPU is in powersaving mode? Set CPU governor to 'performance'!\n Fire up CPU and recalculate MHz!\n</pre>" . PHP_EOL);
236
285
$cpuInfo = getCpuInfo(true);
237
286
}
238
287
@@ -264,6 +313,8 @@ function getCpuInfo($fireUpCpu = false)
264
313
}
265
314
266
315
316
+
/** ---------------------------------- Common functions for tests -------------------------------------------- */
0 commit comments