diff options
| author | Joas Schilling <nickvergessen@gmx.de> | 2010-04-11 01:39:10 +0200 |
|---|---|---|
| committer | Nils Adermann <naderman@naderman.de> | 2010-05-16 19:14:57 +0200 |
| commit | a11fa9c7383dfd34015391092f785f4f47fa8a5d (patch) | |
| tree | 43cf1fa9e58ed7c55f55d459d1f98621bb1478ab | |
| parent | d147bdcd73cea2dd43e54526e589f7aee6f34d4c (diff) | |
| download | forums-a11fa9c7383dfd34015391092f785f4f47fa8a5d.tar forums-a11fa9c7383dfd34015391092f785f4f47fa8a5d.tar.gz forums-a11fa9c7383dfd34015391092f785f4f47fa8a5d.tar.bz2 forums-a11fa9c7383dfd34015391092f785f4f47fa8a5d.tar.xz forums-a11fa9c7383dfd34015391092f785f4f47fa8a5d.zip | |
[ticket/9530] The prosilver problem in #9531 exists in subsilver2 editor.js
PHPBB3-9530
| -rw-r--r-- | phpBB/styles/subsilver2/template/editor.js | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/phpBB/styles/subsilver2/template/editor.js b/phpBB/styles/subsilver2/template/editor.js index 37c6360cb5..54bd3450d0 100644 --- a/phpBB/styles/subsilver2/template/editor.js +++ b/phpBB/styles/subsilver2/template/editor.js @@ -196,7 +196,7 @@ function attach_inline(index, filename) /** * Add quote text to message */ -function addquote(post_id, username) +function addquote(post_id, username, l_wrote) { var message_name = 'message_' + post_id; var theSelection = ''; @@ -257,6 +257,7 @@ function addquote(post_id, username) } else { + insert_text(username + ' ' + l_wrote + ':' + '\n'); var lines = split_lines(theSelection); for (i = 0; i < lines.length; i++) { |
