diff options
author | Phil Davis <phil.davis@inf.org> | 2017-03-21 15:21:18 +0545 |
---|---|---|
committer | Phil Davis <phil.davis@inf.org> | 2017-03-21 15:21:18 +0545 |
commit | c8763391973acbca2621ab42d9683be10f4074bc (patch) | |
tree | cac4c22438a484eb7a46ee020242021b66cf8ac9 /src/usr/local | |
parent | fdacd72b8889f602c786b13720349bf4ea0e16e2 (diff) | |
download | pfsense-c8763391973acbca2621ab42d9683be10f4074bc.zip pfsense-c8763391973acbca2621ab42d9683be10f4074bc.tar.gz |
Fix #7317 Widget Filter All button gateways widget RELENG_2_3
Diffstat (limited to 'src/usr/local')
-rw-r--r-- | src/usr/local/www/widgets/widgets/gateways.widget.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/usr/local/www/widgets/widgets/gateways.widget.php b/src/usr/local/www/widgets/widgets/gateways.widget.php index 311eb71..5c9c836 100644 --- a/src/usr/local/www/widgets/widgets/gateways.widget.php +++ b/src/usr/local/www/widgets/widgets/gateways.widget.php @@ -221,7 +221,7 @@ $widgetperiod = isset($config['widgets']['period']) ? $config['widgets']['period events.push(function(){ $("#showallgateways").click(function() { - $("[id^=show]").each(function() { + $("#widget-<?=$widgetname?>_panel-footer [id^=show]").each(function() { $(this).prop("checked", true); }); }); |