I found a bug in phplist.module if you got more than one list in phplist and want to restrict access it does not work because of

phplist.module row 305

$options = array_merge(array("<strong>". t('All'). "</strong>"), $options);

array_merge does not preserve keys so the array gets messed up.

Replace with this

$options = array("<strong>". t('All'). "</strong>") + $options;

Comments

paulbeaney’s picture

Status: Needs work » Fixed

Fixed in latest D6-DEV version.

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for 2 weeks with no activity.