Skip to content

Commit 321c13d

Browse files
committed
Merge branch 'develop'
2 parents 37edff3 + e822c6a commit 321c13d

File tree

5 files changed

+2683
-2856
lines changed

5 files changed

+2683
-2856
lines changed

Diff for: CHANGELOG.md

+5
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,11 @@ All notable changes to this project will be documented in this file.
33
This project adheres to [Semantic Versioning](http://semver.org/).
44
----
55

6+
## [v2.19.2] - 2024-05-14
7+
8+
### Fixed
9+
- Fixed honeypot issues for logins/registrations
10+
611
## [v2.19.1] - 2024-04-24
712

813
### Changed

Diff for: app/View/Forms/LoginForm.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ class LoginForm extends BaseForm
2727
public function fields()
2828
{
2929
return [
30-
HoneyPot::make(),
30+
HoneyPot::make()->name('honeypot'),
3131
Email::make('email')
3232
->required()
3333
->label('Email')

Diff for: app/View/Forms/RegistrationForm.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ class RegistrationForm extends BaseForm
3131
public function fields()
3232
{
3333
return [
34-
HoneyPot::make(),
34+
HoneyPot::make()->name('honeypot'),
3535
Text::make('name', [
3636
'required' => true,
3737
'label' => 'Name',

0 commit comments

Comments
 (0)