From 1ee5d134f92901864aefc1777e69bc61e7ad281c Mon Sep 17 00:00:00 2001
From: Thomas Bruederli <thomas@roundcube.net>
Date: Tue, 13 May 2014 13:27:38 -0400
Subject: [PATCH] Fix invalid var pointer
---
program/js/treelist.js | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/program/js/treelist.js b/program/js/treelist.js
index a861b49..1dd30a2 100644
--- a/program/js/treelist.js
+++ b/program/js/treelist.js
@@ -64,7 +64,7 @@
scroll_timer,
searchfield,
tree_state,
- list_id = (container.attr('id') || id_prefix || '0'),
+ list_id = (container.attr('id') || p.id_prefix || '0'),
me = this;
--
Gitblit v1.9.1