From a2ea306ec951694f4684e74b5ca628cc57a26978 Mon Sep 17 00:00:00 2001 From: Michael M Slusarz Date: Thu, 15 May 2014 14:59:09 -0600 Subject: [PATCH] We want the list header id, not the translation --- imp/lib/Basic/Listinfo.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/imp/lib/Basic/Listinfo.php b/imp/lib/Basic/Listinfo.php index f0107423bf6..f0b2f2d4a32 100644 --- a/imp/lib/Basic/Listinfo.php +++ b/imp/lib/Basic/Listinfo.php @@ -46,7 +46,7 @@ protected function _init() $view->headers = array(); foreach ($listheaders->headers() as $key => $val) { if ($data = $mime_headers->getValue($key)) { - $view->headers[$val] = $this->_parseListHeaders($val, $data); + $view->headers[$val] = $this->_parseListHeaders($key, $data); } }