From cc9f5ed096ca5c5e6336f1e5ff1a9d2f79ee80b5 Mon Sep 17 00:00:00 2001 From: Andy Miller Date: Wed, 22 Jul 2015 15:31:32 -0600 Subject: [PATCH] More validation updates --- system/src/Grav/Common/Data/Blueprint.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/system/src/Grav/Common/Data/Blueprint.php b/system/src/Grav/Common/Data/Blueprint.php index 19448bc58..768d8e41d 100644 --- a/system/src/Grav/Common/Data/Blueprint.php +++ b/system/src/Grav/Common/Data/Blueprint.php @@ -75,7 +75,7 @@ class Blueprint try { $this->validateArray($data, $this->nested); } catch (\RuntimeException $e) { - throw new \RuntimeException(sprintf('Page validation failed: %s', $e->getMessage())); + throw new \RuntimeException(sprintf('Validation failed: %s', $e->getMessage())); } }