Apply xopher's fix to add 'sitetype' parameter to setup_status_network.sh, exposed to the email

This commit is contained in:
Brion Vibber 2010-02-02 05:53:05 -08:00
parent 6159edcebb
commit 4f6052d8d8
1 changed files with 6 additions and 0 deletions

View File

@ -13,6 +13,11 @@ export sitename="$2"
export tags="$3"
export email="$4"
export fullname="$5"
export sitetype="$6"
if [ "$sitetype" == '' ]; then
sitetype='single-user'
fi
# Fixme: if this is changed later we need to update profile URLs
# for the created user.
@ -71,6 +76,7 @@ then
sed "s/\$nickname/$nickname/" | \
sed "s/\$sitename/$sitename/" | \
sed "s/\$userpass/$userpass/" | \
sed "s/\$sitetype/$sitetype/" | \
php $PHPBASE/scripts/sendemail.php \
-s"$server" \
-n"$nickname" \