diff options
| author | Andrew Dolgov <fox@fakecake.org> | 2024-06-14 13:47:14 +0300 |
|---|---|---|
| committer | Andrew Dolgov <fox@fakecake.org> | 2024-06-14 13:47:14 +0300 |
| commit | cc51487f080166b2a21eb529f1d4fc29994d9ff1 (patch) | |
| tree | e87e5ce6c96a233b9f50c8fb456b02834a585ec1 /classes/Pref_Users.php | |
| parent | 66db7dc0ac996f528f6ff9d71f3cc7ec30d65278 (diff) | |
| parent | 9e6684e9277dace834ef10dab21c5b585f291675 (diff) | |
Merge branch 'master' into weblate-integration
Diffstat (limited to 'classes/Pref_Users.php')
| -rw-r--r-- | classes/Pref_Users.php | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/classes/Pref_Users.php b/classes/Pref_Users.php index 78291592d..9532bded5 100644 --- a/classes/Pref_Users.php +++ b/classes/Pref_Users.php @@ -210,11 +210,13 @@ class Pref_Users extends Handler_Administrative { <div dojoType='fox.Toolbar'> <div style='float : right'> - <input dojoType='dijit.form.TextBox' id='user_search' size='20' type='search' - value="<?= htmlspecialchars($user_search) ?>"> - <button dojoType='dijit.form.Button' onclick='Users.reload()'> - <?= __('Search') ?> - </button> + <form dojoType="dijit.form.Form" onsubmit="Users.reload(); return false;"> + <input dojoType='dijit.form.TextBox' id='user_search' size='20' type='search' + value="<?= htmlspecialchars($user_search) ?>"> + <button dojoType='dijit.form.Button' type='submit'> + <?= __('Search') ?> + </button> + </form> </div> <div dojoType='fox.form.DropDownButton'> |