X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=dbinstall.php;h=2b0d896ca3fccf2f4e80a6113fca7af4e3bfb130;hb=19e183c61f684ff92f5b7c95f09a0a6ca7d7bffe;hp=6195c39614a69db5baa0547f28f028142aff419e;hpb=aad90b9cf0d58c784171189c0ccec3c15e947c23;p=timetracker.git 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 {