diff --git a/www/nginx/pkg-descr b/www/nginx/pkg-descr index a806432da..0d151d597 100644 --- a/www/nginx/pkg-descr +++ b/www/nginx/pkg-descr @@ -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 diff --git a/www/nginx/src/opnsense/mvc/app/controllers/OPNsense/Nginx/Api/SettingsController.php b/www/nginx/src/opnsense/mvc/app/controllers/OPNsense/Nginx/Api/SettingsController.php index 64a23e75c..486a9e205 100644 --- a/www/nginx/src/opnsense/mvc/app/controllers/OPNsense/Nginx/Api/SettingsController.php +++ b/www/nginx/src/opnsense/mvc/app/controllers/OPNsense/Nginx/Api/SettingsController.php @@ -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') {