Skip to content

Commit

Permalink
Merge pull request #585 from medulla-tech/updates-pagination
Browse files Browse the repository at this point in the history
(updates) Change the counter for the params loop
  • Loading branch information
spointu authored Feb 12, 2024
2 parents 5b4a4b7 + f3817b0 commit 834f657
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion web/modules/updates/updates/ajaxUpdatesListWinBlack.php
Original file line number Diff line number Diff line change
Expand Up @@ -38,9 +38,10 @@
$kbs_black = [];
$updateids_black = [];
$titles_black = [];
$count = count($black_list['title']);

// ########## Set params ########## //
for($i=0; $i < $count_black; $i++){
for($i=0; $i < $count; $i++){
$blackActions["unban"][] = $blackUnbanAction;

$titles_black[] = $black_list['title'][$i];
Expand Down

0 comments on commit 834f657

Please sign in to comment.