Skip to content

Commit

Permalink
[jan] Fix autocompleter filtering if items exceed the maximum size (j…
Browse files Browse the repository at this point in the history
…sveiga@it.eng.br, Bug #13984).
  • Loading branch information
yunosh committed Jan 22, 2016
1 parent 3aaef04 commit 38c80f3
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 1 deletion.
2 changes: 2 additions & 0 deletions imp/docs/CHANGES
Expand Up @@ -2,6 +2,8 @@
v6.2.12-git
-----------

[jan] Fix autocompleter filtering if items exceed the maximum size
(jsveiga@it.eng.br, Bug #13984).
[jan] Use access rules compatible with both Apache 2.2 and 2.4.
[jan] Allow to disable remote accounts by locking the preference.
[jan] Fix setting title with newmail count in IE11 and Edge (Bug #14189).
Expand Down
2 changes: 1 addition & 1 deletion imp/lib/Ajax/Imple/AutoCompleter/Pretty.php
Expand Up @@ -40,7 +40,7 @@ public function __construct(array $params = array())
'boxClass' => 'hordeACBox impACBox',
'boxClassFocus' => 'impACBoxFocus',
'deleteIcon' => strval(Horde_Themes::img('delete-small.png')),
'displayFilter' => 'new Function("t", "return t.sub(/<[^>]*>$/, \"\").strip().escapeHTML()")',
'displayFilter' => 'new Function("t", "return t.sub(/<[^>]*(?:>|\\.{3})$/, \"\").strip().escapeHTML()")',
'growingInputClass' => 'hordeACTrigger impACTrigger',
'listClass' => 'hordeACList impACList',
'processValueCallback' => 'ImpComposeBase.autocompleteValue.bind(ImpComposeBase)',
Expand Down
2 changes: 2 additions & 0 deletions imp/package.xml
Expand Up @@ -33,6 +33,7 @@
</stability>
<license uri="http://www.horde.org/licenses/gpl">GPL-2.0</license>
<notes>
* [jan] Fix autocompleter filtering if items exceed the maximum size (jsveiga@it.eng.br, Bug #13984).
* [jan] Use access rules compatible with both Apache 2.2 and 2.4.
* [jan] Allow to disable remote accounts by locking the preference.
* [jan] Fix setting title with newmail count in IE11 and Edge (Bug #14189).
Expand Down Expand Up @@ -3895,6 +3896,7 @@
<date>2015-10-20</date>
<license uri="http://www.horde.org/licenses/gpl">GPL-2.0</license>
<notes>
* [jan] Fix autocompleter filtering if items exceed the maximum size (jsveiga@it.eng.br, Bug #13984).
* [jan] Use access rules compatible with both Apache 2.2 and 2.4.
* [jan] Allow to disable remote accounts by locking the preference.
* [jan] Fix setting title with newmail count in IE11 and Edge (Bug #14189).
Expand Down

0 comments on commit 38c80f3

Please sign in to comment.