From 958c757ecbbd93c4a8a7940e327e46c7a536d9c8 Mon Sep 17 00:00:00 2001 From: "Ruben S. Montero" Date: Sat, 24 Sep 2011 20:47:22 +0200 Subject: [PATCH] bug #829: Error when accessing /login in sunstone. Misspelled class --- src/sunstone/sunstone-server.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/sunstone/sunstone-server.rb b/src/sunstone/sunstone-server.rb index 392579bb1c..8935afd89e 100755 --- a/src/sunstone/sunstone-server.rb +++ b/src/sunstone/sunstone-server.rb @@ -167,7 +167,7 @@ end get '/login' do if !authorized? - templ = settings.confing[:auth]=="basic"? "login.html" : "login_x509.html" + templ = settings.config[:auth]=="basic"? "login.html" : "login_x509.html" return File.read(File.dirname(__FILE__)+'/templates/'+templ) end end