summaryrefslogtreecommitdiff
path: root/roundcubemail/program/include/rcube_message.php
diff options
context:
space:
mode:
authoralec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c>2008-06-04 07:05:47 +0000
committeralec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c>2008-06-04 07:05:47 +0000
commitcae3ecab64d029e306c0505e00f01752ea6595e1 (patch)
tree77e9432be8cb4b171efe2db678d7623390a49b89 /roundcubemail/program/include/rcube_message.php
parent49a346880434437844204755be6daff60b1a501a (diff)
-typo in get_header()
git-svn-id: https://svn.roundcube.net/trunk@1468 208e9e7b-5314-0410-a742-e7e81cd9613c
Diffstat (limited to 'roundcubemail/program/include/rcube_message.php')
-rw-r--r--roundcubemail/program/include/rcube_message.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/roundcubemail/program/include/rcube_message.php b/roundcubemail/program/include/rcube_message.php
index 7dc74ab28..4d3cb6ca9 100644
--- a/roundcubemail/program/include/rcube_message.php
+++ b/roundcubemail/program/include/rcube_message.php
@@ -82,7 +82,7 @@ class rcube_message
*/
public function get_header($name, $raw = false)
{
- $value = $this->header->$name;
+ $value = $this->headers->$name;
return $raw ? $value : $this->imap->decode_header($value);
}