Replies: 1 comment
-
yes, there's #195 to track that |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Hi all,
During post preservation there is an issue with IE version < 8 (unfortunately till present for some users and use cases),.as these browser do not support JSON.stringify natively,and a polyfill JS like "json2.js" should be included - JSON-js/json2.js at master · douglascrockford/JSON-js · GitHub.
In particular in this part of the code:
mod_auth_openidc/src/mod_auth_openidc.c
Line 461 in 34fa5d7
There is a static JavaScript in the code hardcoded.
One option could be to change this code to include a JavaScript code taken from a configuration directive, that could point to a default js file present on Apache folder.
Another option could be to return a template html and this is either configurable from user with a default page in Apache folders or configuration file.
In general this hardcoded JavaScript seems not flexible and an option to overwrite I think meet to be found.
Beta Was this translation helpful? Give feedback.
All reactions