Skip to content

Commit

Permalink
fix: fixed module method name which interfere with Zabbix method adde…
Browse files Browse the repository at this point in the history
…d in 12df76f78ae DEV-2682
  • Loading branch information
gr8b committed Jan 9, 2024
1 parent f7baa5d commit 523f819
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions actions/SqlForm.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,12 @@
class SqlForm extends BaseAction {

protected function checkInput() {
$fields = $this->getValidationRules();
$fields = $this->getSqlFormValidationRules();

return $this->validateInput($fields);
}

protected function getValidationRules() {
protected function getSqlFormValidationRules() {
if ($this->getAction() === 'sqlexplorer.csv') {
return [
'fav' => 'int32',
Expand Down

0 comments on commit 523f819

Please sign in to comment.