From 4f35fb71108207372fb393ef70fafb610d892f05 Mon Sep 17 00:00:00 2001 From: Brian Federle Date: Wed, 22 Feb 2012 11:05:13 -0800 Subject: [PATCH] Get EULA specific to selected language --- ui/scripts/cloudStack.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/scripts/cloudStack.js b/ui/scripts/cloudStack.js index 4d1f1f97e4e..c0dfc431d92 100644 --- a/ui/scripts/cloudStack.js +++ b/ui/scripts/cloudStack.js @@ -313,7 +313,7 @@ // EULA check $.ajax({ - url: 'eula.html', + url: 'eula.' + $.cookie('lang') + '.html', dataType: 'html', success: function(html) { cloudStack.uiCustom.login($.extend(loginArgs, { eula: html, hasLogo: true }));