templates/list-virtual.php:

- fixed boolconf() call
  "if (boolconf('used_quotas') == 'YES')" will never match, because 
  boolconf() returns boolean TRUE or FALSE


git-svn-id: https://svn.code.sf.net/p/postfixadmin/code/trunk@651 a1433add-5e2c-0410-b055-b7f2511e0802
postfixadmin-2.3
Christian Boltz 15 years ago
parent 9102b62a6e
commit ab1162ca84

@ -296,7 +296,7 @@ if (sizeof ($tMailbox) > 0) {
}
else
{
if (boolconf('used_quotas') == 'YES')
if (boolconf('used_quotas'))
print divide_quota ($tMailbox[$i]['current']).'/';
print divide_quota ($tMailbox[$i]['quota']);
}

Loading…
Cancel
Save