Skip to content

Commit

Permalink
Merge pull request #174 from Zverik/fixquote
Browse files Browse the repository at this point in the history
Fix quote screening for level0 link
  • Loading branch information
joto committed May 11, 2016
2 parents 59a0484 + 36e1796 commit 1e75222
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion web/public/js/taginfo.js
Original file line number Diff line number Diff line change
Expand Up @@ -557,7 +557,7 @@ function table_right() {
/* ============================ */

function quote_double(text) {
return text.replace(/["\\]/, '\\$&', 'gm')
return text.replace(/["\\]/gm, '\\$&');
}

function level0_editor(overpass_url_prefix, level0_url_prefix, filter, key, value) {
Expand Down

0 comments on commit 1e75222

Please sign in to comment.