Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion net/haproxy/Makefile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
PLUGIN_NAME= haproxy
PLUGIN_VERSION= 1.11
PLUGIN_VERSION= 1.12
PLUGIN_COMMENT= Reliable, high performance TCP/HTTP load balancer
PLUGIN_DEPENDS= haproxy
PLUGIN_MAINTAINER= opnsense@moov.de
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -252,7 +252,7 @@ public function searchFrontendsAction()
$grid = new UIModelGrid($mdlCP->frontends->frontend);
return $grid->fetchBindRequest(
$this->request,
array("enabled", "name", "description","frontendid"),
array("enabled", "name", "description"),
"name"
);
}
Expand Down Expand Up @@ -382,7 +382,7 @@ public function searchBackendsAction()
$grid = new UIModelGrid($mdlCP->backends->backend);
return $grid->fetchBindRequest(
$this->request,
array("enabled", "name", "description", "backendid"),
array("enabled", "name", "description"),
"name"
);
}
Expand Down Expand Up @@ -480,7 +480,7 @@ public function searchServersAction()
$grid = new UIModelGrid($mdlCP->servers->server);
return $grid->fetchBindRequest(
$this->request,
array("name", "address", "port", "description", "serverid"),
array("name", "address", "port", "description"),
"name"
);
}
Expand Down Expand Up @@ -578,7 +578,7 @@ public function searchHealthchecksAction()
$grid = new UIModelGrid($mdlCP->healthchecks->healthcheck);
return $grid->fetchBindRequest(
$this->request,
array("name", "description", "healthcheckid"),
array("name", "description"),
"name"
);
}
Expand Down Expand Up @@ -676,7 +676,7 @@ public function searchAclsAction()
$grid = new UIModelGrid($mdlCP->acls->acl);
return $grid->fetchBindRequest(
$this->request,
array("name", "description", "aclid"),
array("name", "description"),
"name"
);
}
Expand Down Expand Up @@ -774,7 +774,7 @@ public function searchActionsAction()
$grid = new UIModelGrid($mdlCP->actions->action);
return $grid->fetchBindRequest(
$this->request,
array("name", "description", "actionid"),
array("name", "description"),
"name"
);
}
Expand Down Expand Up @@ -904,7 +904,7 @@ public function searchLuasAction()
$grid = new UIModelGrid($mdlCP->luas->lua);
return $grid->fetchBindRequest(
$this->request,
array("enabled", "name", "description", "luaid"),
array("enabled", "name", "description"),
"name"
);
}
Expand Down Expand Up @@ -1002,7 +1002,7 @@ public function searchErrorfilesAction()
$grid = new UIModelGrid($mdlCP->errorfiles->errorfile);
return $grid->fetchBindRequest(
$this->request,
array("name", "description", "errorfileid"),
array("name", "description"),
"name"
);
}
Expand Down
Loading