From 9262db1d2dc8789b3d87ae1089af869713393705 Mon Sep 17 00:00:00 2001 From: Matthew Weier O'Phinney Date: Wed, 27 Jun 2012 12:30:19 -0500 Subject: [PATCH] [zendframework/zf2#1590] Removed var_dump --- src/Ip.php | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/Ip.php b/src/Ip.php index 43cd892d0..7bdae9394 100644 --- a/src/Ip.php +++ b/src/Ip.php @@ -91,7 +91,6 @@ public function isValid($value) return true; } else { if ((bool) $this->options['allowliteral']) { - var_dump($value,$this->options['allowliteral']); static $regex = '/^\[(.*)\]$/'; if ((bool) preg_match($regex, $value, $matches)) { $value = $matches[1]; @@ -205,4 +204,4 @@ protected function validateIPvFuture($value) */ return ($result && $matches[1] != 4 && $matches[1] != 6); } -} \ No newline at end of file +}