summaryrefslogtreecommitdiff
path: root/admin/send.php
diff options
context:
space:
mode:
authorMax Kremmel <xing@synapse.plus.com>2007-06-17 13:53:04 +0000
committerMax Kremmel <xing@synapse.plus.com>2007-06-17 13:53:04 +0000
commit63725f370f405dc3a824ced43ae3fb1b588c53df (patch)
tree5a41282d16e18a864839fee0253d0ba5346a99b8 /admin/send.php
parent99d72936b29e71eb8878771a797f523a7091ff3b (diff)
downloadnewsletters-63725f370f405dc3a824ced43ae3fb1b588c53df.tar.gz
newsletters-63725f370f405dc3a824ced43ae3fb1b588c53df.tar.bz2
newsletters-63725f370f405dc3a824ced43ae3fb1b588c53df.zip
update getAllGroups() to not return stuff in ['data'] hashkey. this is still from tikiwiki days and is tedious to deal with.
Diffstat (limited to 'admin/send.php')
-rw-r--r--admin/send.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/admin/send.php b/admin/send.php
index 3256fe4..66e97e7 100644
--- a/admin/send.php
+++ b/admin/send.php
@@ -1,6 +1,6 @@
<?php
-// $Header: /cvsroot/bitweaver/_bit_newsletters/admin/send.php,v 1.17 2007/05/04 17:51:39 spiderr Exp $
+// $Header: /cvsroot/bitweaver/_bit_newsletters/admin/send.php,v 1.18 2007/06/17 13:53:04 squareing 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.
@@ -51,8 +51,8 @@ if( $gContent->isValid() && isset( $_REQUEST['preview'] ) && isset( $_REQUEST['s
if( $gContent->isValid() ) {
$groupListHash = array();
$groups = $gBitUser->getAllGroups( $groupListHash );
- $groups['data']['send_subs']['group_name'] = 'Send to subscribers';
- $gBitSmarty->assign_by_ref( 'groupList', $groups['data'] );
+ $groups['send_subs']['group_name'] = 'Send to subscribers';
+ $gBitSmarty->assign_by_ref( 'groupList', $groups );
} else {
$listHash = array();
$editions = $gContent->getList( $listHash );