ClearOS Bug Tracker


View Issue Details Jump to Notes ] Issue History ] Print ]
IDProjectCategoryView StatusDate SubmittedLast Update
0012941ClearOSapp-firewall-custom - Custom Firewallpublic2017-02-06 08:262017-02-08 17:18
Reporterbchambers 
Assigned Tobchambers 
PrioritynormalSeveritymajorReproducibilityalways
StatusclosedResolutionfixed 
PlatformOSOS Version
Product Version7.2.0 
Target Version7.3.0Fixed in Version7.3.0 
Summary0012941: Pagination causes saved rules to be cut
DescriptionPagination and then performing a sort operation will drop from the custom firewall file all rules except those listed in the table (visible).

Remove pagination.
TagsNo tags attached.
Attached Files

- Relationships

-  Notes
(0004751)
bchambers (administrator)
2017-02-06 08:27

In /usr/clearos/apps/firewall_custom/views/summary.php

Look for:

$options = array (
    'sort' => FALSE,
    'id' => 'summary_rule',
    'row-reorder' => TRUE,
    'row-enable-disable' => TRUE
);

And modify to look like this:

$options = array (
    'sort' => FALSE,
    'pagination' => FALSE,
    'id' => 'summary_rule',
    'row-reorder' => TRUE,
    'row-enable-disable' => TRUE
);

- Issue History
Date Modified Username Field Change
2017-02-06 08:26 bchambers New Issue
2017-02-06 08:26 bchambers Status new => assigned
2017-02-06 08:26 bchambers Assigned To => bchambers
2017-02-06 08:27 bchambers Note Added: 0004751
2017-02-06 08:33 bchambers Status assigned => acknowledged
2017-02-06 08:33 bchambers Status acknowledged => confirmed
2017-02-06 08:34 bchambers Status confirmed => resolved
2017-02-06 08:34 bchambers Fixed in Version => 7.3.0
2017-02-06 08:34 bchambers Resolution open => fixed
2017-02-08 17:18 user2 Status resolved => closed