0
0
mirror of https://github.com/postfixadmin/postfixadmin.git synced 2024-09-20 03:36:20 +02:00

- workaround for undefined variables (needed after template merge)

git-svn-id: https://svn.code.sf.net/p/postfixadmin/code/trunk@122 a1433add-5e2c-0410-b055-b7f2511e0802
This commit is contained in:
Christian Boltz 2007-10-03 00:55:55 +00:00
parent 5712070060
commit 76af386cb7

View File

@ -62,6 +62,9 @@ if ($_SERVER['REQUEST_METHOD'] == "GET")
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'])
{