diff options
Diffstat (limited to 'share/www/script')
-rw-r--r-- | share/www/script/futon.format.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/share/www/script/futon.format.js b/share/www/script/futon.format.js index 8d9b7f5c..0eb9b104 100644 --- a/share/www/script/futon.format.js +++ b/share/www/script/futon.format.js @@ -17,8 +17,8 @@ return string.replace(/&/g, "&") .replace(/</g, "<") .replace(/>/g, ">") - .replace(/"/, """) - .replace(/'/, "'") + .replace(/"/g, """) + .replace(/'/g, "'") ; }, |