minor changes in message edit
Former-commit-id: a36fe911f191c3a187c8c70032f3b1aaa0977fea
This commit is contained in:
parent
be8877563b
commit
72a57bfbec
|
@ -106,13 +106,9 @@ if ($read_message) {
|
|||
$dst_name = $message['id_usuario_destino'];
|
||||
}
|
||||
|
||||
// Parse message chain.
|
||||
?>
|
||||
echo '<h1>Conversation with '.$user_name.'</h1>';
|
||||
echo '<h2>Subject: '.$message['subject'].'</h2>';
|
||||
|
||||
<h1>Conversation with <?php echo $user_name; ?></h1>
|
||||
<h2>Subject: <?php echo $message['subject']; ?></h2>
|
||||
|
||||
<?php
|
||||
$conversation = [];
|
||||
$target_str = $message['mensaje'];
|
||||
|
||||
|
@ -160,7 +156,7 @@ if ($read_message) {
|
|||
$parsed_message = str_replace(
|
||||
$order,
|
||||
$replace,
|
||||
io_safe_output($row['message'])
|
||||
trim(io_safe_output($row['message']))
|
||||
);
|
||||
|
||||
echo '<div class="container">';
|
||||
|
@ -319,7 +315,6 @@ if ($reply) {
|
|||
}
|
||||
|
||||
|
||||
|
||||
if ($own_info['is_admin'] || check_acl($config['id_user'], 0, 'PM')) {
|
||||
$return_all_groups = true;
|
||||
} else {
|
||||
|
|
Loading…
Reference in New Issue