You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
As developer i like to embed my own iframes and i like to style them a lot. Therefor i need the possibility to include any html/js.
Similar to ALLOWED_IFRAME_HOSTS which is in code visible but not obviously documented i would suggest to allow a define('ALLOW_UNSAFE', true) in config which simply adds in Document.class.php / sanitizeHtml:
publicfunction sanitizeHtml($string) {
if (defined("ALLOW_UNSAFE") && ALLOW_UNSAFE) return$string
...
Sanitize is very important and should be active for regular users. For Developers it might be a great benefit to override it without modifying the code.
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
Uh oh!
There was an error while loading. Please reload this page.
As developer i like to embed my own iframes and i like to style them a lot. Therefor i need the possibility to include any html/js.
Similar to ALLOWED_IFRAME_HOSTS which is in code visible but not obviously documented i would suggest to allow a
define('ALLOW_UNSAFE', true)in config which simply adds in Document.class.php / sanitizeHtml:Sanitize is very important and should be active for regular users. For Developers it might be a great benefit to override it without modifying the code.
All reactions