dblayeroo : checkvalues : return the simpler tests in first error in place or the complexes ones

git-svn-id: https://svn.fournier38.fr/svn/ProgSVN/trunk@4685 bf3deb0d-5f1a-0410-827f-c0cc1f45334c
This commit is contained in:
2018-10-31 12:16:39 +00:00
parent c3ee849ad5
commit 7e77e6b841

View File

@@ -2953,8 +2953,8 @@ class dblayeroo
}
$values = $this->normalize ($values);
$update = !! $update;
$errors = array_merge ($this->checkRealTypes ($values, $update),
$this->verify ($values, $update));
$errors = array_merge ($this->verify ($values, $update),
$this->checkRealTypes ($values, $update));
if (count ($errors) === 0)
$this->debugLog ("End of checkValues (",$update,") : Nothing in error");
else