From: Michael M Slusarz Date: Wed, 15 Dec 2010 18:23:35 +0000 (-0700) Subject: Fix tree display in mimp X-Git-Url: https://git.internetallee.de/?a=commitdiff_plain;h=657e7919ce2f5970060997de5fb3fe46b97f5087;p=horde.git Fix tree display in mimp --- diff --git a/imp/lib/Imap/Tree.php b/imp/lib/Imap/Tree.php index 51a0a2ce4..2671a7854 100644 --- a/imp/lib/Imap/Tree.php +++ b/imp/lib/Imap/Tree.php @@ -1466,8 +1466,8 @@ class IMP_Imap_Tree implements ArrayAccess, Iterator, Serializable * DEFAULT: false * 'render_params' - (array) List of params to pass to renderer if * auto-creating. - * DEFAULT: 'alternate', 'lines', 'lines_base', and - * 'nosession' are passed in with true values + * DEFAULT: 'alternate', 'lines', and 'lines_base' + * are passed in with true values. * 'render_type' - (string) The renderer name. * DEFAULT: Javascript * @@ -1492,8 +1492,7 @@ class IMP_Imap_Tree implements ArrayAccess, Iterator, Serializable $tree = $GLOBALS['injector']->getInstance('Horde_Core_Factory_Tree')->create($name, $opts['render_type'], array_merge(array( 'alternate' => true, 'lines' => true, - 'lines_base' => true, - 'nosession' => true + 'lines_base' => true ), $opts['render_params'])); $parent = null; }