Skip to content
Toggle navigation
Toggle navigation
This project
Loading...
Sign in
Tenzing
/
Tz Tools
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Issue Boards
Files
Commits
Network
Compare
Branches
Tags
bf6c87e2
authored
2014-11-24 10:36:20 -0500
by
Marty Penner
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
Fix a query failing in UserSearch
1 parent
1e98d28f
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 additions
and
1 deletions
lib/UserSearch.php
lib/UserSearch.php
View file @
bf6c87e
...
...
@@ -91,7 +91,7 @@ class UserSearch implements ArrayAccess, Iterator, Countable {
}
}
mysqli_query
(
"SET SESSION group_concat_max_len = 40960"
,
$wpdb
->
dbh
);
mysqli_query
(
$wpdb
->
dbh
,
"SET SESSION group_concat_max_len = 40960"
);
$query
=
"
SELECT SQL_CALC_FOUND_ROWS
...
...
Please
register
or
sign in
to post a comment