Skip to content

Commit

Permalink
Fixes #5177 Deletion issue in grid mode.
Browse files Browse the repository at this point in the history
  • Loading branch information
CaMer0n committed Feb 5, 2024
1 parent bbf00ae commit 004da27
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions e107_handlers/admin_ui.php
Original file line number Diff line number Diff line change
Expand Up @@ -6217,6 +6217,12 @@ protected function handleListBatch($selected, $field, $value)
return $cnt;
}

public function GridDeleteTrigger($posted)
{
$this->ListDeleteTrigger($posted);
}


/**
* Catch delete submit
* @param $posted
Expand Down

1 comment on commit 004da27

@BlastFM
Copy link

@BlastFM BlastFM commented on 004da27 Feb 5, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thank you very much. I downloaded the file and replaced the existing one without any other alterations, and I can confirm that this fixed the issue for me.

Please sign in to comment.