Project

General

Profile

Bug #16591 » 16591.patch

Christopher Cope, 12/19/2025 12:52 AM

View differences:

src/etc/inc/pfsense-utils.inc
4367 4367
				}
4368 4368
				$pkgname = substr(reverse_strrchr($package['configurationfile'], "."), 0, -1);
4369 4369
				$plugin_function = $pkgname . '_'. $plugin_type;
4370
				$results[$pkgname] = call_user_func($plugin_function, $plugin_params);
4370
				if (function_exists($plugin_function)) {
4371
					$results[$pkgname] = call_user_func($plugin_function, $plugin_params);
4372
				}
4371 4373
			}
4372 4374
		}
4373 4375
	}
(3-3/3)