SF.net SVN: postfixadmin:[813] trunk/setup.php
Brought to you by:
christian_boltz,
gingerdog
From: <Gin...@us...> - 2010-03-24 12:30:43
|
Revision: 813 http://postfixadmin.svn.sourceforge.net/postfixadmin/?rev=813&view=rev Author: GingerDog Date: 2010-03-24 12:30:36 +0000 (Wed, 24 Mar 2010) Log Message: ----------- setup.php: patch from https://sourceforge.net/tracker/?func=detail&atid=937964&aid=2975822&group_id=191583 - thank you Modified Paths: -------------- trunk/setup.php Modified: trunk/setup.php =================================================================== --- trunk/setup.php 2010-03-24 12:21:36 UTC (rev 812) +++ trunk/setup.php 2010-03-24 12:30:36 UTC (rev 813) @@ -349,7 +349,7 @@ $table_domain = table_by_key('domain'); $r = db_query("SELECT * FROM $table_domain WHERE domain = 'ALL'"); if($r['rows'] == 0) { - db_insert($table_domain, array('domain' => 'ALL')); // all other fields should default through the schema. + db_insert('domain', array('domain' => 'ALL')); // all other fields should default through the schema. } list ($error, $tMessage, $pAdminCreate_admin_username_text, $pAdminCreate_admin_password_text) = create_admin($fUsername, $fPassword, $fPassword2, array('ALL'), TRUE); This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |