diff options
author | Meik Sievertsen <acydburn@phpbb.com> | 2007-08-01 16:27:06 +0000 |
---|---|---|
committer | Meik Sievertsen <acydburn@phpbb.com> | 2007-08-01 16:27:06 +0000 |
commit | 5ed0be15abe090c426114240f06a01005edfefea (patch) | |
tree | cc56fdd8bf3a274e6eac21d907026c2bbeb5c4bf /phpBB/styles/prosilver | |
parent | 2ffdd92975cdacd7c12b5a438a62730ec02e6129 (diff) | |
download | forums-5ed0be15abe090c426114240f06a01005edfefea.tar forums-5ed0be15abe090c426114240f06a01005edfefea.tar.gz forums-5ed0be15abe090c426114240f06a01005edfefea.tar.bz2 forums-5ed0be15abe090c426114240f06a01005edfefea.tar.xz forums-5ed0be15abe090c426114240f06a01005edfefea.zip |
some tiny fixes and two new features. ;)
git-svn-id: file:///svn/phpbb/trunk@7994 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/styles/prosilver')
-rw-r--r-- | phpBB/styles/prosilver/template/editor.js | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/phpBB/styles/prosilver/template/editor.js b/phpBB/styles/prosilver/template/editor.js index 80dd20da99..61747f7e56 100644 --- a/phpBB/styles/prosilver/template/editor.js +++ b/phpBB/styles/prosilver/template/editor.js @@ -227,7 +227,8 @@ function addquote(post_id, username) theSelection = theSelection.replace(/<br\/>/ig, '\n'); theSelection = theSelection.replace(/<\;/ig, '<'); theSelection = theSelection.replace(/>\;/ig, '>'); - theSelection = theSelection.replace(/&\;/ig, '&'); + theSelection = theSelection.replace(/&\;/ig, '&'); + theSelection = theSelection.replace(/ \;/ig, ' '); } else if (document.all) { |