We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 835571a commit fc8b02bCopy full SHA for fc8b02b
src/ViewRenderer.php
@@ -31,7 +31,7 @@ public static function renderDiagnosticsPage(): void {
31
$view['memoryLimit'] = ini_get( 'memory_limit' );
32
$view['options'] = array_values( Options::getAll() );
33
$view['site_info'] = SiteInfo::getAllInfo();
34
- $view['phpOutOfDate'] = version_compare( PHP_VERSION, '8.1', '<' );
+ $view['phpOutOfDate'] = PHP_VERSION_ID < 80100;
35
$view['uploadsWritable'] = SiteInfo::isUploadsWritable();
36
$view['maxExecutionTime'] = intval( ini_get( 'max_execution_time' ) );
37
$view['curlSupported'] = SiteInfo::hasCURLSupport();
0 commit comments