summaryrefslogtreecommitdiff
path: root/admin/send.php
diff options
context:
space:
mode:
authorChristian Fowler <spider@viovio.com>2005-12-29 21:55:56 +0000
committerChristian Fowler <spider@viovio.com>2005-12-29 21:55:56 +0000
commit00724ad440748edf6f065850d8fc431e1f97cce9 (patch)
tree3bb6ee748460124d7abc5c01c0f99e4da310347c /admin/send.php
parent8e1e743487066b011059d7140fcd6a924232fccf (diff)
downloadnewsletters-00724ad440748edf6f065850d8fc431e1f97cce9.tar.gz
newsletters-00724ad440748edf6f065850d8fc431e1f97cce9.tar.bz2
newsletters-00724ad440748edf6f065850d8fc431e1f97cce9.zip
remove duplicate edit_newsletter smarty, use include instead. add 'sending' smarty var to prevent floaticon bars in sent HTML email
Diffstat (limited to 'admin/send.php')
-rw-r--r--admin/send.php3
1 files changed, 2 insertions, 1 deletions
diff --git a/admin/send.php b/admin/send.php
index cd9ef8a..685ab09 100644
--- a/admin/send.php
+++ b/admin/send.php
@@ -1,6 +1,6 @@
<?php
-// $Header: /cvsroot/bitweaver/_bit_newsletters/admin/send.php,v 1.10 2005/12/29 18:46:39 spiderr Exp $
+// $Header: /cvsroot/bitweaver/_bit_newsletters/admin/send.php,v 1.11 2005/12/29 21:55:55 spiderr Exp $
// Copyright (c) 2002-2003, Luis Argerich, Garland Foster, Eduardo Polidor, et. al.
// All Rights Reserved. See copyright.txt for details and a complete list of authors.
@@ -31,6 +31,7 @@ $gBitSmarty->assign('emited', 'n');
if( $gContent->isValid() && isset( $_REQUEST['preview'] ) ) {
$recipients = $gContent->getRecipients( $_REQUEST['send_group'] );
$gBitSmarty->assign_by_ref( 'recipientList', $recipients );
+ $gBitSmarty->assign( 'sending', TRUE );
} elseif( $gContent->isValid() && isset( $_REQUEST["send"] ) ) {
if( $emails = $gContent->getRecipients( $_REQUEST['send_group'] ) ) {
global $gBitMailer;