From 469ede77cbc147142425609d9b57022462198816 Mon Sep 17 00:00:00 2001
From: Thomas Bruederli <thomas@roundcube.net>
Date: Thu, 25 Jul 2013 15:55:01 -0400
Subject: [PATCH] Better check for priority header

---
 program/steps/mail/compose.inc |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/program/steps/mail/compose.inc b/program/steps/mail/compose.inc
index 8e29553..2330bc0 100644
--- a/program/steps/mail/compose.inc
+++ b/program/steps/mail/compose.inc
@@ -1454,7 +1454,7 @@
 
   if (isset($_POST['_priority']))
     $sel = $_POST['_priority'];
-  else if ($MESSAGE->headers && intval($MESSAGE->headers->priority) != 3)
+  else if (isset($MESSAGE->headers->priority) && intval($MESSAGE->headers->priority) != 3)
     $sel = $MESSAGE->headers->priority;
   else
     $sel = 0;

--
Gitblit v1.9.1