Bug #401
closedDescription Values on Aliases not >10
100%
Description
The description values on aliases show up to 10 items!
This is not a bug but an enhancement :)
Test with change in firewall_aliases.php
from if(count($addresses) < 10) {
to if(count($alias['address']) < 10) {
Files
Updated by Oscar Francia over 14 years ago
Oscar Francia wrote:
The description values on aliases show up to 10 items!
This is not a bug but an enhancement :)
Test with change in firewall_aliases.php
from if(count($addresses) < 10) {
to if(count($alias['address']) < 10) {
if(count(array_slice(explode(" ", $alias['address']), 0, 10)) < 10) {
is the correct string!
Updated by Oscar Francia over 14 years ago
188c188
< if(count($addresses) < 10) {
---
if(count(array_slice(explode(" ", $alias['address']), 0, 10)) < 10) {
191c191
< echo "...";
---
echo ", ...";
Updated by Oscar Francia over 14 years ago
Sorry for all this quote...
I attach the diff file.
Updated by Ermal Luçi over 14 years ago
- Status changed from New to Resolved
- % Done changed from 0 to 100
Applied in changeset 4ef606fbb83c7394311a294e423a565a1e44a0d8.