silverstripe / silverstripe-userforms

UserForms module provides a visual form builder for the Silverstripe CMS. No coding required to build forms such as contact pages.
BSD 3-Clause "New" or "Revised" License
135 stars 225 forks source link

Deprecation warnings being emitted when calling `setThrowExceptionOnBadDataType()` #1292

Closed GuySartorelli closed 4 months ago

GuySartorelli commented 4 months ago

UserForm is calling the deprecated method setThrowExceptionOnBadDataType(). That can't be avoided without breaking changes, so we need to wraps those calls in Deprecation::withNoReplacement() so the deprecation warning isn't logged unless developers really want it.

PRs