SF.net SVN: postfixadmin: [122] trunk/overview.php
Brought to you by:
christian_boltz,
gingerdog
|
From: <chr...@us...> - 2007-10-03 00:55:51
|
Revision: 122
http://postfixadmin.svn.sourceforge.net/postfixadmin/?rev=122&view=rev
Author: christian_boltz
Date: 2007-10-02 17:55:55 -0700 (Tue, 02 Oct 2007)
Log Message:
-----------
- workaround for undefined variables (needed after template merge)
Modified Paths:
--------------
trunk/overview.php
Modified: trunk/overview.php
===================================================================
--- trunk/overview.php 2007-10-03 00:51:47 UTC (rev 121)
+++ trunk/overview.php 2007-10-03 00:55:55 UTC (rev 122)
@@ -62,6 +62,9 @@
if (check_owner ($SESSID_USERNAME, $fDomain))
{
+ $tCanAddAlias = 1; # TODO: workaround for undefined variable
+ $tCanAddMailbox = 1; # TODO: workaround for undefined variable
+
$query = "SELECT $table_alias.address,$table_alias.goto,$table_alias.modified,$table_alias.active FROM $table_alias LEFT JOIN $table_mailbox ON $table_alias.address=$table_mailbox.username WHERE $table_alias.domain='$fDomain' AND $table_mailbox.maildir IS NULL ORDER BY $table_alias.address LIMIT $limitSql";
if ('pgsql'==$CONF['database_type'])
{
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|