summaryrefslogtreecommitdiff
path: root/actions/showmessage.php
diff options
context:
space:
mode:
authorEvan Prodromou <evan@controlyourself.ca>2008-09-17 15:07:45 -0400
committerEvan Prodromou <evan@controlyourself.ca>2008-09-17 15:07:45 -0400
commit823737891bf311f30a50e610f5a4659478e7d13d (patch)
tree7a79290c9b5f4e10f868ff9d44b92010374fa51b /actions/showmessage.php
parent24496bafd2356240a1ac419bb568aeb8040ec699 (diff)
fix titles in showmessage
darcs-hash:20080917190745-5ed1f-c9305b7ee5f4cd79524491e8e0d676cf42f6ebc1.gz
Diffstat (limited to 'actions/showmessage.php')
-rw-r--r--actions/showmessage.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/actions/showmessage.php b/actions/showmessage.php
index c57c96aef..184060aa9 100644
--- a/actions/showmessage.php
+++ b/actions/showmessage.php
@@ -63,12 +63,12 @@ class ShowmessageAction extends MailboxAction {
if ($user->id == $message->from_profile) {
$to = $message->getTo();
- $title = sprintf(_('Message to %1\$s on %2\$s'),
+ $title = sprintf(_("Message to %1\$s on %2\$s"),
$to->nickname,
common_exact_date($message->created));
} else if ($user->id == $message->to_profile) {
$from = $message->getFrom();
- $title = sprintf(_('Message from %1\$s on %2\$s'),
+ $title = sprintf(_("Message from %1\$s on %2\$s"),
$from->nickname,
common_exact_date($message->created));
}