SF.net SVN: postfixadmin:[552] trunk/templates/list-virtual.php
Brought to you by:
christian_boltz,
gingerdog
From: <chr...@us...> - 2009-01-25 22:22:24
|
Revision: 552 http://postfixadmin.svn.sourceforge.net/postfixadmin/?rev=552&view=rev Author: christian_boltz Date: 2009-01-25 21:36:08 +0000 (Sun, 25 Jan 2009) Log Message: ----------- templates/list-virtual.php: - switch to boolconf() to avoid "undefined variable" warning Modified Paths: -------------- trunk/templates/list-virtual.php Modified: trunk/templates/list-virtual.php =================================================================== --- trunk/templates/list-virtual.php 2009-01-25 21:31:40 UTC (rev 551) +++ trunk/templates/list-virtual.php 2009-01-25 21:36:08 UTC (rev 552) @@ -296,7 +296,7 @@ } else { - if ($CONF['used_quotas'] == 'YES') + if (boolconf('used_quotas') == 'YES') print divide_quota ($tMailbox[$i]['current']).'/'; print divide_quota ($tMailbox[$i]['quota']); } This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |