From 76af386cb720c07b61a794e389e1951ab05e933b Mon Sep 17 00:00:00 2001 From: Christian Boltz Date: Wed, 3 Oct 2007 00:55:55 +0000 Subject: [PATCH] - 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 --- overview.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/overview.php b/overview.php index 38b1d63d..3fc345c5 100644 --- a/overview.php +++ b/overview.php @@ -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']) {