Bug #401
closed
Description Values on Aliases not >10
Added by Oscar Francia over 14 years ago.
Updated over 14 years ago.
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
diff (163 Bytes)
diff |
Diff file |
Oscar Francia, 03/04/2010 08:38 AM
|
|
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!
188c188
< if(count($addresses) < 10) {
---
if(count(array_slice(explode(" ", $alias['address']), 0, 10)) < 10) {
191c191
< echo "...";
---
echo ", ...";
Sorry for all this quote...
I attach the diff file.
- Status changed from New to Resolved
- % Done changed from 0 to 100
Also available in: Atom
PDF