Skip to content

Commit

Permalink
BUGFIX: Fix syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
mchh committed Jul 29, 2022
1 parent b39be4a commit 439f11c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Resources/Private/Fusion/Elements/FriendlyCaptcha.fusion
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@ prototype(Ahorn.FriendlyCaptcha:Captcha.Definition) < prototype(Neos.Form.Builde
formElementType = 'Ahorn.FriendlyCaptcha:Captcha'

properties {
siteKey = ${Configuration.setting('Ahorn.FriendlyCaptcha.siteKey')} ? ${Configuration.setting('Ahorn.FriendlyCaptcha.siteKey')} : ${null}
siteKey = ${Configuration.setting('Ahorn.FriendlyCaptcha.siteKey') ? Configuration.setting('Ahorn.FriendlyCaptcha.siteKey') : null}
}
}

0 comments on commit 439f11c

Please sign in to comment.