Skip to content
Snippets Groups Projects
Commit e20fb370 authored by Joas Schilling's avatar Joas Schilling
Browse files

Correctly create list of placeholders

parent 66f94273
Branches
No related tags found
No related merge requests found
......@@ -226,7 +226,7 @@ class Preferences {
array_unshift($queryParams, $key);
array_unshift($queryParams, $app);
$placeholders = (sizeof($chunk) == 50) ? $placeholders_50 : implode(',', array_fill(0, sizeof($users), '?'));
$placeholders = (sizeof($chunk) == 50) ? $placeholders_50 : implode(',', array_fill(0, sizeof($chunk), '?'));
$query = 'SELECT `userid`, `configvalue` '
. ' FROM `*PREFIX*preferences` '
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment