From 7e77e6b841cb6c370725d59dde51f1005b650c8f Mon Sep 17 00:00:00 2001 From: Dominique Fournier Date: Wed, 31 Oct 2018 12:16:39 +0000 Subject: [PATCH] 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 --- dblayeroo.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dblayeroo.php b/dblayeroo.php index 508d4f9..755940e 100644 --- a/dblayeroo.php +++ b/dblayeroo.php @@ -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