X-Git-Url: http://wagnertech.de/gitweb/gitweb.cgi/timetracker.git/blobdiff_plain/aad90b9cf0d58c784171189c0ccec3c15e947c23..de518d7584b24c438ac562b3f1eca4e96568c85a:/dbinstall.php diff --git a/dbinstall.php b/dbinstall.php index 6195c396..2b0d896c 100755 --- a/dbinstall.php +++ b/dbinstall.php @@ -78,7 +78,9 @@ if ($request->isGet()) { } // Check if PHP version is good enough. - $required_version = '5.2.1'; // Something in TCPDF library does not work below this one. + // $required_version = '5.2.1'; // Something in TCPDF library does not work below this one. + $required_version = '5.4.0'; // Week view (week.php) requires 5.4 because of []-way of referencing arrays. + // This needs further investigation as we use [] elsewhere without obvious problems. if (version_compare(phpversion(), $required_version, '>=')) { echo('PHP version: '.phpversion().', good enough.
'); } else {