Merge commit from fork
Trigger a 4.2.x alpha release build / trigger_alpha_build (push) Has been cancelled Details
Test Authentication/Authorization backends via mutiple messaging protocols / selenium (chrome, 1.17.3, 27.3) (push) Has been cancelled Details
Test (make) / Build and Xref (1.17, 26) (push) Has been cancelled Details
Test (make) / Build and Xref (1.17, 27) (push) Has been cancelled Details
Test (make) / Test (1.17, 27, khepri) (push) Has been cancelled Details
Test (make) / Test (1.17, 27, mnesia) (push) Has been cancelled Details
Test (make) / Test mixed clusters (1.17, 27, khepri) (push) Has been cancelled Details
Test (make) / Test mixed clusters (1.17, 27, mnesia) (push) Has been cancelled Details
Test (make) / Type check (1.17, 27) (push) Has been cancelled Details
Test Management UI with Selenium / selenium (chrome, 1.17.3, 27.3) (push) Has been cancelled Details
Test Authentication/Authorization backends via mutiple messaging protocols / summary-selenium (push) Has been cancelled Details

Management UI: escape virtual host names in virtual host restart forms
This commit is contained in:
Michael Klishin 2025-06-17 21:49:30 +04:00 committed by GitHub
commit 60be7d8046
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions

View File

@ -41,7 +41,7 @@
<% if (vhost.cluster_state[node] == "stopped"){ %>
<form action="#/restart_vhost" method="post">
<input type="hidden" name="node" value="<%= node %>"/>
<input type="hidden" name="vhost" value="<%= vhost.name %>"/>
<input type="hidden" name="vhost" value="<%= fmt_string(vhost.name) %>"/>
<input type="submit" value="Restart"/>
</form>
<% } %>

View File

@ -92,7 +92,7 @@
<% if (state == "stopped"){ %>
<form action="#/restart_vhost" method="post" class="confirm">
<input type="hidden" name="node" value="<%= node %>"/>
<input type="hidden" name="vhost" value="<%= vhost.name %>"/>
<input type="hidden" name="vhost" value="<%= fmt_string(vhost.name) %>"/>
<input type="submit" value="Restart"/>
</form>
<% } %>