SF.net SVN: postfixadmin: [223] trunk/create-domain.php
Brought to you by:
christian_boltz,
gingerdog
|
From: <Gin...@us...> - 2007-11-14 21:19:07
|
Revision: 223
http://postfixadmin.svn.sourceforge.net/postfixadmin/?rev=223&view=rev
Author: GingerDog
Date: 2007-11-14 13:19:10 -0800 (Wed, 14 Nov 2007)
Log Message:
-----------
create-domain.php: fix for bug 1831720
Modified Paths:
--------------
trunk/create-domain.php
Modified: trunk/create-domain.php
===================================================================
--- trunk/create-domain.php 2007-11-14 18:27:24 UTC (rev 222)
+++ trunk/create-domain.php 2007-11-14 21:19:10 UTC (rev 223)
@@ -58,7 +58,9 @@
if(isset($_POST[$key]) && !empty($POST[$key])) {
$$key = escape_string($_POST[$key]);
}
- $$key = $default;
+ else {
+ $$key = $default;
+ }
}
if (empty ($fDomain) or domain_exist ($fDomain) or !check_domain ($fDomain))
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|