Skip to content
This repository was archived by the owner on Mar 13, 2026. It is now read-only.

Commit af37619

Browse files
committed
fixed user search functionality
1 parent 98791ce commit af37619

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

CHANGELOG-1.5.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ CHANGELOG - ZIKULA 1.5.x
2626
- Explicitly specify translation domain in pager templates (#3917).
2727
- Explicitly specify translation domain in user mail helper for calls from external modules (#3918).
2828
- Avoid information disclosure if database exceptions occur.
29+
- Fixed broken user search in Groups administration.
2930

3031
- Vendor updates:
3132
- gedmo/doctrine-extensions updated from 2.4.35 to 2.4.36

src/system/UsersModule/Resources/public/js/Zikula.Users.Admin.View.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
return;
3333
}
3434

35-
var fragment = $(this).attr('value');
35+
var fragment = $(this).val();
3636

3737
if (fragment === "") {
3838
userListTable.removeClass('hide');

0 commit comments

Comments
 (0)