www/nginx bugfix (#1205)

* www/nginx: fix method call
* www/nginx: release note
This commit is contained in:
Fabian Franz BSc
2019-02-22 18:51:54 +01:00
committed by GitHub
parent ee14d04554
commit b73ccd8ae1
2 changed files with 2 additions and 1 deletions
+1
View File
@@ -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
@@ -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') {