diff options
| -rw-r--r-- | mailman_lib.php | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/mailman_lib.php b/mailman_lib.php index 522c5ba..4f25b5a 100644 --- a/mailman_lib.php +++ b/mailman_lib.php @@ -1,5 +1,5 @@ <?php -// $Header: /cvsroot/bitweaver/_bit_util/mailman_lib.php,v 1.8 2008/12/10 21:52:06 tekimaki_admin Exp $ +// $Header: /cvsroot/bitweaver/_bit_util/mailman_lib.php,v 1.9 2009/01/21 20:53:59 tekimaki_admin Exp $ // Copyright (c) bitweaver Group // All Rights Reserved. // Licensed under the GNU LESSER GENERAL PUBLIC LICENSE. See license.txt for details. @@ -64,10 +64,11 @@ function mailman_config_list( $pParamHash ){ function mailman_newlist( $pParamHash ) { $error = NULL; if( !($error = mailman_verify_list( $pParamHash['listname'] )) ) { + $optiond = ""; if( !empty( $pParamHash['listhost'] ) ) { $options .= ' -e '.escapeshellarg( $pParamHash['listhost'] ); } - $options = ' -q '.escapeshellarg( $pParamHash['listname'] ); + $options .= ' -q '.escapeshellarg( $pParamHash['listname'] ); $options .= ' '.escapeshellarg( $pParamHash['listadmin-addr'] ).' '; $options .= ' '.escapeshellarg( $pParamHash['admin-password'] ).' '; |
