Skip to content

Commit

Permalink
Merge branch 'develop'
Browse files Browse the repository at this point in the history
  • Loading branch information
mlantz committed May 14, 2024
2 parents 37edff3 + e822c6a commit 321c13d
Show file tree
Hide file tree
Showing 5 changed files with 2,683 additions and 2,856 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,11 @@ All notable changes to this project will be documented in this file.
This project adheres to [Semantic Versioning](http://semver.org/).
----

## [v2.19.2] - 2024-05-14

### Fixed
- Fixed honeypot issues for logins/registrations

## [v2.19.1] - 2024-04-24

### Changed
Expand Down
2 changes: 1 addition & 1 deletion app/View/Forms/LoginForm.php
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ class LoginForm extends BaseForm
public function fields()
{
return [
HoneyPot::make(),
HoneyPot::make()->name('honeypot'),
Email::make('email')
->required()
->label('Email')
Expand Down
2 changes: 1 addition & 1 deletion app/View/Forms/RegistrationForm.php
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ class RegistrationForm extends BaseForm
public function fields()
{
return [
HoneyPot::make(),
HoneyPot::make()->name('honeypot'),
Text::make('name', [
'required' => true,
'label' => 'Name',
Expand Down
Loading

0 comments on commit 321c13d

Please sign in to comment.