X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/dc2a2c8ebd1a11e4a64555fda22c6859a51defff..ea4e33efa8b81b6f3183ee94abf7464d5b42490f:/lib/potlatch.rb diff --git a/lib/potlatch.rb b/lib/potlatch.rb index 2030f55c3..27ee0253b 100644 --- a/lib/potlatch.rb +++ b/lib/potlatch.rb @@ -183,7 +183,7 @@ module Potlatch File.open("#{Rails.root}/config/potlatch/presets.txt") do |file| file.each_line do|line| t = line.chomp - if t =~ /(\w+)\/(\w+)/ + if t =~ %r{(\w+)/(\w+)} presettype = $1 presetcategory = $2 presetmenus[presettype].push(presetcategory) @@ -246,7 +246,7 @@ module Potlatch autotags = { "point" => {}, "way" => {}, "POI" => {} } File.open("#{Rails.root}/config/potlatch/autocomplete.txt") do |file| file.each_line do|line| - next unless line.chomp =~ /^([\w:]+)\/(\w+)\s+(.+)$/ + next unless line.chomp =~ %r{^([\w:]+)/(\w+)\s+(.+)$} tag = $1 type = $2