From c919fdf1ae5dc38c258d195014ff72fd74ddbebe Mon Sep 17 00:00:00 2001 From: thinkphp Date: Wed, 27 Mar 2013 11:40:32 +0800 Subject: [PATCH] =?UTF-8?q?=E6=94=B9=E8=BF=9BInput=E7=B1=BB?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Think/Input.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Think/Input.php b/Think/Input.php index 9507d222..6badc897 100644 --- a/Think/Input.php +++ b/Think/Input.php @@ -56,7 +56,7 @@ class Input { }else{ $data = filter_var($data,is_int($filter)?$filter:filter_id($filter)); if(false === $data) { - $data = isset($args[2])?$args[2]:NULL; + return isset($args[2])?$args[2]:NULL; } } }