Skip to content
Snippets Groups Projects
Commit 7c8b36a9 authored by Guillaume ROUSSE's avatar Guillaume ROUSSE
Browse files

escape SP name content

parent 5907ba0f
No related branches found
No related tags found
No related merge requests found
......@@ -23,7 +23,7 @@
[% organization_url = idp.organization_url() %]
[% FOREACH sp IN sps %]
[% NEXT UNLESS sp.organization_url() == organization_url %]
<option value="[% sp.entityid() %]">[% sp.display_name() %]</option>
<option value="[% sp.entityid() %]">[% sp.display_name() | html %]</option>
[% END %]
</select>
</fieldset>
......@@ -34,7 +34,7 @@
<select id="all" name="all">
<option value=""></option>
[% FOREACH sp IN sps %]
<option value="[% sp.entityid() %]">[% sp.display_name() %]</option>
<option value="[% sp.entityid() %]">[% sp.display_name() | html %]</option>
[% END %]
</select>
</fieldset>
......
......@@ -23,7 +23,7 @@
[% organization_url = idp.organization_url() %]
[% FOREACH sp IN sps %]
[% NEXT UNLESS sp.organization_url() == organization_url %]
<option value="[% sp.entityid() %]">[% sp.display_name() %]</option>
<option value="[% sp.entityid() %]">[% sp.display_name() | html %]</option>
[% END %]
</select>
</fieldset>
......@@ -35,7 +35,7 @@
<option value=""></option>
[% FOREACH sp IN sps %]
[% NEXT UNLESS sp.is_member_of('renater') %]
<option value="[% sp.entityid() %]">[% sp.display_name() %]</option>
<option value="[% sp.entityid() %]">[% sp.display_name() | html %]</option>
[% END %]
</select>
</fieldset>
......@@ -46,7 +46,7 @@
<option value=""></option>
[% FOREACH sp IN sps %]
[% NEXT UNLESS sp.is_member_of('test') %]
<option value="[% sp.entityid() %]">[% sp.display_name() %]</option>
<option value="[% sp.entityid() %]">[% sp.display_name() | html %]</option>
[% END %]
</select>
</fieldset>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment