mirror of
https://github.com/netbirdio/plugins.git
synced 2026-05-22 18:44:07 -07:00
www/nginx bugfix (#1205)
* www/nginx: fix method call * www/nginx: release note
This commit is contained in:
@@ -15,6 +15,7 @@ Plugin Changelog
|
||||
* allow plugins via include hooks
|
||||
* Breaking: the enabled flag in the general setting now works (en- or disables all vhosts in the plugin itself, but always serves plugins). Default was false so make sure you have it enabled before upgrade.
|
||||
* Alias support for downstream proxies (trust setting)
|
||||
* bugfix: deleting IP ACL
|
||||
|
||||
1.7
|
||||
|
||||
|
||||
+1
-1
@@ -530,7 +530,7 @@ class SettingsController extends ApiMutableModelControllerBase
|
||||
public function delipaclAction($uuid)
|
||||
{
|
||||
$nginx = $this->getModel();
|
||||
$uuid_attached = $nginx->find_ip_acl_entry_uuids($uuid);
|
||||
$uuid_attached = $nginx->find_ip_acl_uuids($uuid);
|
||||
|
||||
$ret = $this->delBase('ip_acl', $uuid);
|
||||
if ($ret['result'] == 'deleted') {
|
||||
|
||||
Reference in New Issue
Block a user