From e5f575dfe893765b54c7a381e50cb18c74b7d6d4 Mon Sep 17 00:00:00 2001 From: Jim Parry Date: Sun, 1 Sep 2019 12:05:20 -0700 Subject: [PATCH] Fix missing form close tag --- system/Honeypot/Honeypot.php | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/system/Honeypot/Honeypot.php b/system/Honeypot/Honeypot.php index de84bfb76a..ac94f0c27c 100644 --- a/system/Honeypot/Honeypot.php +++ b/system/Honeypot/Honeypot.php @@ -1,6 +1,4 @@ prepareTemplate($this->config->template); $body = $response->getBody(); - $body = str_ireplace('', $prep_field, $body); + $body = str_ireplace('', $prep_field . '', $body); $response->setBody($body); }