aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/ucp/ucp_pm_compose.php
diff options
context:
space:
mode:
authorAndreas Fischer <bantu@phpbb.com>2012-11-09 16:06:40 +0100
committerAndreas Fischer <bantu@phpbb.com>2012-11-10 00:23:03 +0100
commit83179e07ff427e8ab9e235eb2a7009b30300f056 (patch)
tree3fc39c7103eb7daa24a439e1798381f502d650a3 /phpBB/includes/ucp/ucp_pm_compose.php
parentb4f7f97a2c78baf98b01a1ea333d4299a627c160 (diff)
downloadforums-83179e07ff427e8ab9e235eb2a7009b30300f056.tar
forums-83179e07ff427e8ab9e235eb2a7009b30300f056.tar.gz
forums-83179e07ff427e8ab9e235eb2a7009b30300f056.tar.bz2
forums-83179e07ff427e8ab9e235eb2a7009b30300f056.tar.xz
forums-83179e07ff427e8ab9e235eb2a7009b30300f056.zip
[ticket/10780] Use colon from language in ucp_pm_compose.php where possible.
PHPBB3-10780
Diffstat (limited to 'phpBB/includes/ucp/ucp_pm_compose.php')
-rw-r--r--phpBB/includes/ucp/ucp_pm_compose.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/phpBB/includes/ucp/ucp_pm_compose.php b/phpBB/includes/ucp/ucp_pm_compose.php
index 934ff566cc..5577e8dab3 100644
--- a/phpBB/includes/ucp/ucp_pm_compose.php
+++ b/phpBB/includes/ucp/ucp_pm_compose.php
@@ -838,11 +838,11 @@ function compose_pm($id, $mode, $action, $user_folders = array())
$post_id = request_var('p', 0);
if ($config['allow_post_links'])
{
- $message_link = "[url=" . generate_board_url() . "/viewtopic.$phpEx?p={$post_id}#p{$post_id}]{$user->lang['SUBJECT']}: {$message_subject}[/url]\n\n";
+ $message_link = "[url=" . generate_board_url() . "/viewtopic.$phpEx?p={$post_id}#p{$post_id}]{$user->lang['SUBJECT']}{$user->lang['COLON']} {$message_subject}[/url]\n\n";
}
else
{
- $message_link = $user->lang['SUBJECT'] . ': ' . $message_subject . " (" . generate_board_url() . "/viewtopic.$phpEx?p={$post_id}#p{$post_id})\n\n";
+ $message_link = $user->lang['SUBJECT'] . $user->lang['COLON'] . ' ' . $message_subject . " (" . generate_board_url() . "/viewtopic.$phpEx?p={$post_id}#p{$post_id})\n\n";
}
}
else