After upgrading to 8.0.0-beta15, geophp module throws the following error:
Fatal error: Call to undefined method Drupal\Component\Utility\SafeMarkup::set() in [webroot]/modules/contrib/geophp/geophp.module on line 86
This is due to SafeMarkup::set() being removed in beta15. There are recommended replacements in the change record.
Setting this to critical as this will prevent the module from working at all in beta15 and beyond.
| Comment | File | Size | Author |
|---|---|---|---|
| #4 | 2564103-4.patch | 1014 bytes | marthinal |
| #3 | geophp-safemarkup.patch | 1.06 KB | janlaureys |
Comments
Comment #2
janlaureys commentedGoogling that error turned up the same issue in another module. Maybe we could use the included patch as well, or something similar.
https://www.drupal.org/node/2563385
Comment #3
janlaureys commentedQuick and kinda dirty fix, just removed the function as it was only a hard coded string that was being parsed by the function.
Comment #4
marthinal commentedMaybe we could try something like this.
Comment #5
penyaskito#4 looks good to me
Comment #7
plopescCommitted.
Thanks!