@Bob.Dig said in 26.07-RELEASE: Port Forward is missing pass:
Is there an easy way to incorporate these changes into pfSense Plus today?
Copy paste the entire (bottom of the page) :
diff --git a/src/etc/inc/globals.inc b/src/etc/inc/globals.inc
index bf46112b5fc5159c23406e3216b68a83e848264e..38ee5813856ad3b81e8a1733af819d48820a77f3 100644
--- a/src/etc/inc/globals.inc
+++ b/src/etc/inc/globals.inc
@@ -92,7 +92,7 @@ $g = [
'disablehelpicon' => false,
'disablecrashreporter' => false,
.....
+
+// Association action type.
+// 'associated-rule-id': Used for existing NAT rules with a linked filter rule.
+// 'filter-rule-association': Used for new or existing NAT rules with no linked rules.
$section->addInput(new Form_Select(
- $rule_association,
+ $has_linked_filter_rule ? 'associated-rule-id' : 'filter-rule-association',
'Filter rule association',
$pconfig['associated-rule-id'],
$rulelist
Produces a no-go :
[image: 1787301221142-9992d749-0957-419c-9aac-19b87f8f76e3-image.png]
But ...
when you change just this :
[image: 1787301253819-97d52bb1-4e42-4c34-86ac-629e1cf32a55-image.png]
to
'latest_config' => '24.6',
as the current pfSense Plus 26.03 config version is 24.6, you have a go :
[image: 1787301383216-14468707-a4d7-46f0-95dd-2cee8a62e4b1-image.png]
That's something you could consider, but a green light from @jimp seems appropriate here, as changing that line to "24.8" might have 'consequences'.
Clear is that the patch was based upon a config version we don't have yet, 24.7, something that lies beyond the 26.07 Release.