mirror of
https://github.com/phpbb/phpbb.git
synced 2025-08-06 00:37:42 +02:00
[ticket/9531] BBCode-less quotes fallback-option is missing "Author wrote:" line when quoting from topic-review.
PHPBB3-9531
This commit is contained in:
committed by
Nils Adermann
parent
03d50a2e83
commit
fe9c5019b6
@@ -194,7 +194,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 = '';
|
||||
@@ -256,6 +256,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++)
|
||||
{
|
||||
|
Reference in New Issue
Block a user