SF.net SVN: postfixadmin:[565] trunk/create-domain.php
Brought to you by:
christian_boltz,
gingerdog
From: <chr...@us...> - 2009-02-11 20:02:19
|
Revision: 565 http://postfixadmin.svn.sourceforge.net/postfixadmin/?rev=565&view=rev Author: christian_boltz Date: 2009-02-11 20:02:15 +0000 (Wed, 11 Feb 2009) Log Message: ----------- create-domain.php: - fixed "undefined variable $tBackupmx" on POST - fixed vim: line - create-domain.php already uses 4 spaces per tab Modified Paths: -------------- trunk/create-domain.php Modified: trunk/create-domain.php =================================================================== --- trunk/create-domain.php 2009-02-09 19:11:43 UTC (rev 564) +++ trunk/create-domain.php 2009-02-11 20:02:15 UTC (rev 565) @@ -84,6 +84,7 @@ if ($_SERVER['REQUEST_METHOD'] == "POST") { + $tBackupmx = ""; if ($fDomain == null or domain_exist($fDomain) or !check_domain($fDomain)) { $error = 1; @@ -139,7 +140,7 @@ if (!domain_postcreation($fDomain)) { $tMessage = $PALANG['pAdminCreate_domain_error']; - } + } } } @@ -148,5 +149,5 @@ include ("templates/admin_create-domain.php"); include ("templates/footer.php"); -/* vim: set expandtab softtabstop=3 tabstop=3 shiftwidth=3: */ +/* vim: set expandtab softtabstop=4 tabstop=4 shiftwidth=4: */ ?> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |