diff options
author | Bart van Bragt <bartvb@users.sourceforge.net> | 2001-12-14 21:13:15 +0000 |
---|---|---|
committer | Bart van Bragt <bartvb@users.sourceforge.net> | 2001-12-14 21:13:15 +0000 |
commit | 2eba22f4ccb0015cbee8bd3a036c83b9b9ca1a43 (patch) | |
tree | 63cd5d95b8c6a2103eca17419cb9e93fa9d434ff | |
parent | 834ab6b948e406ba61b61daf104daae4e9d7a1e9 (diff) | |
download | forums-2eba22f4ccb0015cbee8bd3a036c83b9b9ca1a43.tar forums-2eba22f4ccb0015cbee8bd3a036c83b9b9ca1a43.tar.gz forums-2eba22f4ccb0015cbee8bd3a036c83b9b9ca1a43.tar.bz2 forums-2eba22f4ccb0015cbee8bd3a036c83b9b9ca1a43.tar.xz forums-2eba22f4ccb0015cbee8bd3a036c83b9b9ca1a43.zip |
Added empty line under block of quoted msg when replying
git-svn-id: file:///svn/phpbb/trunk@1575 89ea8834-ac86-4346-8a33-228a782c2dd0
-rw-r--r-- | phpBB/privmsg.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/privmsg.php b/phpBB/privmsg.php index 7ff10ab514..949d8dc20e 100644 --- a/phpBB/privmsg.php +++ b/phpBB/privmsg.php @@ -1290,7 +1290,7 @@ else if( $submit || $refresh || $mode != "" ) $msg_date = create_date($board_config['default_dateformat'], $privmsg['privmsgs_date'], $board_config['board_timezone']); - $privmsg_message = "[quote=\"" . $to_username . "\"]\n" . $privmsg_message . "\n[/quote]"; + $privmsg_message = "[quote=\"" . $to_username . "\"]\n" . $privmsg_message . "\n[/quote]\n"; $mode = "reply"; } |