diff options
author | Thomas Bruederli <thomas@roundcube.net> | 2014-05-13 19:27:38 +0200 |
---|---|---|
committer | Thomas Bruederli <thomas@roundcube.net> | 2014-05-13 19:27:38 +0200 |
commit | 1ee5d134f92901864aefc1777e69bc61e7ad281c (patch) | |
tree | b1a448e2755f2030257f12965639ca047f731ecf /program/js | |
parent | e3f84735d7bc5548ab09dfa7cab26faeec21c7ed (diff) |
Fix invalid var pointer
Diffstat (limited to 'program/js')
-rw-r--r-- | 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 a861b4987..1dd30a20e 100644 --- a/program/js/treelist.js +++ b/program/js/treelist.js @@ -64,7 +64,7 @@ function rcube_treelist_widget(node, p) scroll_timer, searchfield, tree_state, - list_id = (container.attr('id') || id_prefix || '0'), + list_id = (container.attr('id') || p.id_prefix || '0'), me = this; |