Some styling changes. Changed drop-down into radio buttons. Tried, and failed, to get the 'decline' link to look like a button.

This commit is contained in:
Matt Amos 2010-04-27 00:36:44 +01:00
parent 4b2ac2ea2b
commit 972278a223
6 changed files with 72 additions and 19 deletions

View file

@ -510,7 +510,7 @@ module OSM
def self.legal_text_for_country(country_code)
file_name = File.join(RAILS_ROOT, "config", "legales", country_code.to_s + ".yml")
file_name = File.join(RAILS_ROOT, "config", "legales", "GB.yml") unless File.exist? file_name
file_name = File.join(RAILS_ROOT, "config", "legales", APP_CONFIG['default_legale'] + ".yml") unless File.exist? file_name
YAML::load_file(file_name)
end