diff options
Diffstat (limited to 'phpBB/includes/functions_privmsgs.php')
| -rw-r--r-- | phpBB/includes/functions_privmsgs.php | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/phpBB/includes/functions_privmsgs.php b/phpBB/includes/functions_privmsgs.php index 4fc5034f7b..c4cbb7ca1e 100644 --- a/phpBB/includes/functions_privmsgs.php +++ b/phpBB/includes/functions_privmsgs.php @@ -1751,6 +1751,8 @@ function message_history($msg_id, $user_id, $message_row, $folder, $in_post_mode  		return false;  	} +	$title = $row['message_subject']; +  	$rowset = array();  	$bbcode_bitfield = '';  	$folder_url = append_sid("{$phpbb_root_path}ucp.$phpEx", 'i=pm') . '&folder='; @@ -1774,8 +1776,6 @@ function message_history($msg_id, $user_id, $message_row, $folder, $in_post_mode  	while ($row = $db->sql_fetchrow($result));  	$db->sql_freeresult($result); -	$title = $row['message_subject']; -  	if (sizeof($rowset) == 1 && !$in_post_mode)  	{  		return false; | 
