From ee9742c873d2b1436debe2aa2194a4f6a9253dc7 Mon Sep 17 00:00:00 2001
From: Thomas Bruederli <thomas@roundcube.net>
Date: Sun, 15 Mar 2015 15:04:29 -0400
Subject: [PATCH] Avoid errors when message list doesn't have a header
---
program/js/app.js | 3 +++
1 files changed, 3 insertions(+), 0 deletions(-)
diff --git a/program/js/app.js b/program/js/app.js
index d6c5cd8..1da2a81 100644
--- a/program/js/app.js
+++ b/program/js/app.js
@@ -6728,6 +6728,9 @@
this.env.listcols = listcols;
+ if (!this.env.coltypes)
+ this.env.coltypes = {};
+
// replace old column headers
if (thead) {
if (repl) {
--
Gitblit v1.9.1