From 44930f211be3f658fc92f2d5318255de03078701 Mon Sep 17 00:00:00 2001 From: Daniel Hensby Date: Thu, 21 Dec 2017 17:34:09 +0000 Subject: [PATCH] FIX Allow HTML 5 input tags in FunctionalTest form submissions --- thirdparty/simpletest/page.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/thirdparty/simpletest/page.php b/thirdparty/simpletest/page.php index add422371..ae9ebcd78 100644 --- a/thirdparty/simpletest/page.php +++ b/thirdparty/simpletest/page.php @@ -94,7 +94,7 @@ class SimpleTagBuilder { $tag_class = $map[$type]; return new $tag_class($attributes); } - return false; + return new SimpleTextTag($attributes); } /**