Bump version to 4.10-dev

This commit is contained in:
Peter Knut
2024-10-17 00:24:53 +02:00
committed by Jakub Vrana
parent 72ed1b5cdc
commit d4f99d5cdc
5 changed files with 12 additions and 9 deletions

View File

@@ -0,0 +1,7 @@
<?php
function adminer_errors($errno, $errstr) {
return !!preg_match('~^(Trying to access array offset on( value of type)? null|Undefined (array key|property))~', $errstr);
}
error_reporting(6135); // errors and warnings
set_error_handler('adminer_errors', E_WARNING);