mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-28 22:28:51 +00:00
Fix quoting problem
git-svn-id: file:///svn/phpbb/trunk@2344 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
parent
f4cf95101b
commit
8ca969ed31
1 changed files with 4 additions and 4 deletions
|
@ -38,8 +38,8 @@ if( !empty($board_config['privmsg_disable']) )
|
||||||
//
|
//
|
||||||
// Var definitions
|
// Var definitions
|
||||||
//
|
//
|
||||||
$html_entities_match = array("#&#", "#<#", "#>#", "#\"#");
|
$html_entities_match = array("#&#", "#<#", "#>#");
|
||||||
$html_entities_replace = array("&", "<", ">", """);
|
$html_entities_replace = array("&", "<", ">");
|
||||||
|
|
||||||
//
|
//
|
||||||
// Parameters
|
// Parameters
|
||||||
|
@ -1334,7 +1334,7 @@ else if( $submit || $refresh || $mode != "" )
|
||||||
|
|
||||||
$msg_date = create_date($board_config['default_dateformat'], $privmsg['privmsgs_date'], $board_config['board_timezone']);
|
$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]\n";
|
$privmsg_message = "[quote=\"" . $to_username . "\"]" . $privmsg_message . "[/quote]\n";
|
||||||
|
|
||||||
$mode = "reply";
|
$mode = "reply";
|
||||||
}
|
}
|
||||||
|
@ -1361,7 +1361,7 @@ else if( $submit || $refresh || $mode != "" )
|
||||||
{
|
{
|
||||||
$orig_word = array();
|
$orig_word = array();
|
||||||
$replacement_word = array();
|
$replacement_word = array();
|
||||||
$result = obtain_word_list($orig_word, $replacement_word);
|
obtain_word_list($orig_word, $replacement_word);
|
||||||
|
|
||||||
if( $bbcode_on )
|
if( $bbcode_on )
|
||||||
{
|
{
|
||||||
|
|
Loading…
Add table
Reference in a new issue