summaryrefslogtreecommitdiff
path: root/actions/showmessage.php
diff options
context:
space:
mode:
authorEvan Prodromou <evan@controlyourself.ca>2008-09-23 02:30:29 -0400
committerEvan Prodromou <evan@controlyourself.ca>2008-09-23 02:30:29 -0400
commit64c27d57cf1d273b70dbbd05965e1f496bf59829 (patch)
treec672221b90099978f186fcd85099880764a1dd10 /actions/showmessage.php
parentb2b475d3130325599fa775ba32fffb3e3d91e14f (diff)
incorrect message info shown in title
darcs-hash:20080923063029-5ed1f-de15e9af49acb7e402127b45cd5b6c2814f559bb.gz
Diffstat (limited to 'actions/showmessage.php')
-rw-r--r--actions/showmessage.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/actions/showmessage.php b/actions/showmessage.php
index 08c71b5a9..ce4a1f372 100644
--- a/actions/showmessage.php
+++ b/actions/showmessage.php
@@ -51,7 +51,7 @@ class ShowmessageAction extends MailboxAction {
function get_message() {
$id = $this->trimmed('message');
- $message = Message::staticGet('message', $id);
+ $message = Message::staticGet('id', $id);
return $message;
}