|
From: Paul S. O. <ps...@us...> - 2002-03-19 01:53:24
|
Update of /cvsroot/phpbb/phpBB2
In directory usw-pr-cvs1:/tmp/cvs-serv20739
Modified Files:
privmsg.php
Log Message:
Fix quoting problem
Index: privmsg.php
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/privmsg.php,v
retrieving revision 1.89
retrieving revision 1.90
diff -C2 -r1.89 -r1.90
*** privmsg.php 18 Mar 2002 13:35:43 -0000 1.89
--- privmsg.php 19 Mar 2002 01:53:19 -0000 1.90
***************
*** 39,44 ****
// Var definitions
//
! $html_entities_match = array("#&#", "#<#", "#>#", "#\"#");
! $html_entities_replace = array("&", "<", ">", """);
//
--- 39,44 ----
// Var definitions
//
! $html_entities_match = array("#&#", "#<#", "#>#");
! $html_entities_replace = array("&", "<", ">");
//
***************
*** 1335,1339 ****
$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";
$mode = "reply";
--- 1335,1339 ----
$msg_date = create_date($board_config['default_dateformat'], $privmsg['privmsgs_date'], $board_config['board_timezone']);
! $privmsg_message = "[quote=\"" . $to_username . "\"]" . $privmsg_message . "[/quote]\n";
$mode = "reply";
***************
*** 1362,1366 ****
$orig_word = array();
$replacement_word = array();
! $result = obtain_word_list($orig_word, $replacement_word);
if( $bbcode_on )
--- 1362,1366 ----
$orig_word = array();
$replacement_word = array();
! obtain_word_list($orig_word, $replacement_word);
if( $bbcode_on )
|