From 4a1da65963915f3e6eca90aaaa4cd70dac800f96 Mon Sep 17 00:00:00 2001 From: Uflax <66204865+Uflax@users.noreply.github.com> Date: Mon, 16 Dec 2024 13:36:38 +0100 Subject: [PATCH] Update helpers.php add label to honeypot field --- src/helpers.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/helpers.php b/src/helpers.php index 466f76c..180b429 100644 --- a/src/helpers.php +++ b/src/helpers.php @@ -16,11 +16,11 @@ * * @return string */ - function honeypot_field($name = null, $class = null) + function honeypot_field($name = null, $class = null, $label = null) { $name = $name ?: HoneypotGuard::FIELD_NAME; $class = $class ?: 'uniform__potty'; - return ''; + return ''; } }