| 1 |
<?php // $Id$ |
<?php // $Id: mlm.subscribers.inc,v 1.1 2009/05/15 14:34:32 vauxia Exp $ |
| 2 |
|
|
| 3 |
/** |
/** |
| 4 |
* Subscription import/export form on an MLM list. |
* Subscription import/export form on an MLM list. |
| 70 |
$rows = array(); |
$rows = array(); |
| 71 |
$res = $list->subscribers(100); |
$res = $list->subscribers(100); |
| 72 |
while ($row = db_fetch_array($res)) { |
while ($row = db_fetch_array($res)) { |
| 73 |
$row[] = l(t('unsubscribe'), 'mlm/'. $list->lid .'/unsubscribe/'. current($row), array(), drupal_get_destination()); |
$row[] = l(t('unsubscribe'), 'mlm/'. $list->lid .'/unsubscribe/'. current($row), array('query' => 'destination='. $_GET['q'])); |
| 74 |
$rows[] = $row; |
$rows[] = $row; |
| 75 |
} |
} |
| 76 |
|
|