From: Michael M Slusarz Date: Tue, 20 Oct 2009 05:41:42 +0000 (-0600) Subject: Make abbrev a bit smaller in length. X-Git-Url: https://git.internetallee.de/?a=commitdiff_plain;h=606eeb3966dc3cb8905eac837cc180523696b429;p=horde.git Make abbrev a bit smaller in length. --- diff --git a/imp/lib/Folder.php b/imp/lib/Folder.php index e9f62e7c5..af08155d1 100644 --- a/imp/lib/Folder.php +++ b/imp/lib/Folder.php @@ -130,7 +130,7 @@ class IMP_Folder continue; } - $abbrev = $label = str_repeat(' ', 4 * $ob['c']) . $ob['l']; + $abbrev = $label = str_repeat(' ', 2 * $ob['c']) . $ob['l']; if (strlen($abbrev) > 26) { $abbrev = Horde_String::substr($abbrev, 0, 10) . '...' . Horde_String::substr($abbrev, -13, 13); }