SF.net SVN: postfixadmin:[449] trunk/functions.inc.php
Brought to you by:
christian_boltz,
gingerdog
From: <Gin...@us...> - 2008-08-19 20:00:40
|
Revision: 449 http://postfixadmin.svn.sourceforge.net/postfixadmin/?rev=449&view=rev Author: GingerDog Date: 2008-08-19 20:00:50 +0000 (Tue, 19 Aug 2008) Log Message: ----------- patch from https://sourceforge.net/tracker/index.php?func=detail&aid=2059427&group_id=191583&atid=937964 ; thanks Modified Paths: -------------- trunk/functions.inc.php Modified: trunk/functions.inc.php =================================================================== --- trunk/functions.inc.php 2008-08-16 17:56:28 UTC (rev 448) +++ trunk/functions.inc.php 2008-08-19 20:00:50 UTC (rev 449) @@ -609,11 +609,11 @@ $limit = get_domain_properties ($domain); if ($limit['aliases'] == 0) { - return true; + return false; } if ($limit['aliases'] < 0) { - return false; + return true; } if ($limit['alias_count'] >= $limit['aliases']) { @@ -637,11 +637,11 @@ $limit = get_domain_properties ($domain); if ($limit['mailboxes'] == 0) { - return true; + return false; } if ($limit['mailboxes'] < 0) { - return false; + return true; } if ($limit['mailbox_count'] >= $limit['mailboxes']) { This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |