1
0
mirror of https://github.com/OpenNebula/one.git synced 2025-03-22 18:50:08 +03:00

bug #829: Error when accessing /login in sunstone. Misspelled class

This commit is contained in:
Ruben S. Montero 2011-09-24 20:47:22 +02:00
parent 7a530fb77c
commit 958c757ecb

View File

@ -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