aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/styles/prosilver
diff options
context:
space:
mode:
authorMeik Sievertsen <acydburn@phpbb.com>2007-08-01 16:27:06 +0000
committerMeik Sievertsen <acydburn@phpbb.com>2007-08-01 16:27:06 +0000
commit5ed0be15abe090c426114240f06a01005edfefea (patch)
treecc56fdd8bf3a274e6eac21d907026c2bbeb5c4bf /phpBB/styles/prosilver
parent2ffdd92975cdacd7c12b5a438a62730ec02e6129 (diff)
downloadforums-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.js3
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(/&lt\;/ig, '<');
theSelection = theSelection.replace(/&gt\;/ig, '>');
- theSelection = theSelection.replace(/&amp\;/ig, '&');
+ theSelection = theSelection.replace(/&amp\;/ig, '&');
+ theSelection = theSelection.replace(/&nbsp\;/ig, ' ');
}
else if (document.all)
{