From 19926e002047f9b2105ae1b69c727d10460fac7c Mon Sep 17 00:00:00 2001 From: Guillaume Rousse <guillaume.rousse@renater.fr> Date: Tue, 7 Nov 2017 10:50:41 +0100 Subject: [PATCH] fix variable name --- templates/web/account_wizard.tt2.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates/web/account_wizard.tt2.html b/templates/web/account_wizard.tt2.html index 7f566fe..3041612 100644 --- a/templates/web/account_wizard.tt2.html +++ b/templates/web/account_wizard.tt2.html @@ -111,7 +111,7 @@ Note that only Service Providers are in the list which are included in the eduGA <select id="sp_entityid" name="sp_entityid" class="required"> <option value="">Select your Service Provider below</option> - [% FOREACH entity IN federation_metadata_as_hashref.sort('default_display_name') %] + [% FOREACH entity IN metadata.sort('default_display_name') %] <option value="[% entity.entityid %]">[% IF entity.default_display_name %][% entity.default_display_name %] [% END %]([% entity.entityid %])</option> [% END %] </select> -- GitLab