[ postfixadmin-Bugs-2830001 ] Domain List says all domains not active
Brought to you by:
christian_boltz,
gingerdog
|
From: SourceForge.net <no...@so...> - 2009-08-04 20:48:11
|
Bugs item #2830001, was opened at 2009-07-31 00:14 Message generated for change (Comment added) made by gingerdog You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=937964&aid=2830001&group_id=191583 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: Interface (example) Group: v 2.3 >Status: Closed >Resolution: Fixed Priority: 5 Private: No Submitted By: Shawn Djernes (sdjernes) Assigned to: Nobody/Anonymous (nobody) Summary: Domain List says all domains not active Initial Comment: 2.3rc6 All Domains are listed as "NO" in the active field. Even though when you go into the "Edit" screen they are active and they work. ---------------------------------------------------------------------- >Comment By: GingerDog (gingerdog) Date: 2009-08-04 20:48 Message: fixed in subversion; note the db_get_boolean() function was changed to use 't' and 'f' and not 'true' and 'false' thanks for reporting the bug ---------------------------------------------------------------------- Comment By: GingerDog (gingerdog) Date: 2009-08-04 20:48 Message: Thanks for the bug report; we believe this has been fixed in subversion. ---------------------------------------------------------------------- Comment By: Christian Boltz (christian_boltz) Date: 2009-08-01 14:33 Message: I tested with 2.3 rc6 and also the latest SVN version (which has some unrelated changes) and can't reproduce this bug (using MySQL). What database do you use? If you use PosgreSQL, try a little change in templates/admin-list-domain.php line 74 and 77: (line 74) $backupmx = ($domain_properties[$i]['backupmx'] == 1) ? $PALANG['YES'] : $PALANG['NO']; (line 77) $active = ($domain_properties[$i]['active'] == 1) ? $PALANG['YES'] : $PALANG['NO']; Replace "== 1" with "== db_get_boolean(true)" - does this solve the problem? ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=937964&aid=2830001&group_id=191583 |