diff options
| author | mo khan <mo@mokhan.ca> | 2025-02-27 14:26:15 -0700 |
|---|---|---|
| committer | mo khan <mo@mokhan.ca> | 2025-02-27 14:26:15 -0700 |
| commit | 964e4c5f9a9934bf26d420deb68f35be914ae749 (patch) | |
| tree | 53af70b1b6f408afdf46c6012210cbd28c709603 /bin | |
| parent | 08f42d37248047ed8ccead2f30e3e76167139b6b (diff) | |
fix: Do not pass the safe_level argument to ERB.new
Diffstat (limited to 'bin')
| -rwxr-xr-x | bin/idp | 2 | ||||
| -rwxr-xr-x | bin/sp | 2 |
2 files changed, 2 insertions, 2 deletions
@@ -126,7 +126,7 @@ class IdentityProvider </body> </html> ERB - erb = ERB.new(template, nil, trim_mode: '-') + erb = ERB.new(template, trim_mode: '-') html = erb.result(binding) [200, { 'Content-Type' => "text/html" }, [html]] end @@ -110,7 +110,7 @@ class ServiceProvider </body> </html> ERB - erb = ERB.new(template, nil, trim_mode: '-') + erb = ERB.new(template, trim_mode: '-') html = erb.result(binding) [200, { 'Content-Type' => "text/html" }, [html]] end |
