greg Wrote:For this one :
Code:
< $als_fwd = ($als_fwd == 'no') ? tr('disabled') : tr('enabled');
---
> // $als_fwd = ($als_fwd == 'no') ? tr('disabled') : tr('enabled');
It's because I prefer to have the url of the forward directly in the domain alias list instead of 'disable' / 'enable'. I think it's more useful to have 'http://forward-domain.tld' / 'no'
Don't you think this would be better?:
Code:
< $als_fwd = ($als_fwd == 'no') ? tr('disabled') : tr('enabled');
---
> $als_fwd = ($als_fwd == 'no') ? tr('disabled') : $als_fwd;
resulting in this change to be useless:
Code:
< return array(tr('Enable'), "enable_als_fwd.php?id=$als_id");
---
> // return array(tr('Enable'), "enable_als_fwd.php?id=$als_id");
> return array(tr('None'), "enable_als_fwd.php?id=$als_id");