Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
mahara
mahara
Commits
92f7cd9e
Commit
92f7cd9e
authored
Nov 20, 2017
by
Robert Lyon
Committed by
Gerrit Code Review
Nov 20, 2017
Browse files
Options
Browse Files
Download
Plain Diff
Merge "Bug 1731404: fix suspended/ expired user select"
parents
c2606289
b8d6797c
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
htdocs/admin/users/suspended.php
htdocs/admin/users/suspended.php
+1
-1
htdocs/js/paginator.js
htdocs/js/paginator.js
+1
-1
No files found.
htdocs/admin/users/suspended.php
View file @
92f7cd9e
...
...
@@ -127,7 +127,7 @@ jQuery(function ($) {
'offset': 0,
'sesskey': config['sesskey'],
'setlimit': true,
'type': $('usertype_type').val
ue
,
'type': $('
#
usertype_type
option:selected
').val
()
,
};
p.sendQuery(params);
event.preventDefault();
...
...
htdocs/js/paginator.js
View file @
92f7cd9e
...
...
@@ -220,7 +220,7 @@ return function(id, list, heading, script, extradata) {
if
(
firstLink
.
length
)
{
firstLink
.
focus
();
}
else
if
(
results
.
length
)
{
else
if
(
results
&&
results
.
length
>
0
)
{
results
.
prop
(
'
tabindex
'
,
-
1
)
.
addClass
(
'
hidefocus
'
)
.
focus
();
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment