- Issue created by @keiserjb
- 🇺🇸United States keiserjb
Add TypedConfigManagerInterface to SiteAuditConfigForm constructor
- Updated constructor to inject TypedConfigManagerInterface as required.
- Fixed compatibility with ConfigFormBase parent class.
- Updated `create()` method to include `config.typed` service. - 🇮🇳India arunsahijpal
Hey @keiserjb,
I have installed this module and there is no errors in the settings.
Here is the ss for reference. Please add to steps to reproduce if it exists in your site. - 🇨🇦Canada noah
I was getting this error after upgrading Drupal from 10.4.2 to 11.1.2. The patch at 4 works great to resolve the issue, but I had to make a few minor tweaks to get it to apply:
- The patch has an extra level of prefix in the file paths (they start with “/site_audit/”, so the patch has to be applied with -p2 rather than -p1 and can't be applied via Composer): I removed the extra level.
- The patch line endings are CRLF instead of LF (so I suspect it applies in Windows, but it doesn't elsewhere): I switched to LF.
- The patch file encoding shows up as UTF-16 Little Endian rather than UTF-8: I switched to UTF-8.
So the code in the patch attached here is identical, only some meta stuff in the patch file is different.