Hello. I was trying to replace 2.x version with 3.x because we are swtiching to php7.2. But I can see the error on this page admin/config/people/saml_sp it says
Error: Call to undefined method Drupal\saml_sp\Form\SamlSpConfig::isOverridden() in Drupal\saml_sp\Form\SamlSpConfig->buildForm() (line 304
I can't find isOverridden method in this class, but it exists in 2.x branch. Why this method has been deleted in 3.x branch? Was this intent?
| Comment | File | Size | Author |
|---|---|---|---|
| #3 | 3029137-3-call-to-undefined-method.patch | 7.71 KB | jrglasgow |
Comments
Comment #2
Dirst commentedComment #3
jrglasgow commentedisOverridden() was added after the 8.x-3.x branch was created and it was never ported forward. The new_cert option was added to the 8.x-2.x branch then cherry-picked into the 8.x-3.x branch. This is how the call was put in without the method actually existing. This patch will fix the issue.
Comment #5
jrglasgow commented