Closed (fixed)
Project:
PHPlist Integration Module
Version:
6.x-1.x-dev
Component:
Code
Priority:
Critical
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
29 Apr 2009 at 12:04 UTC
Updated:
11 Jun 2009 at 13:30 UTC
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
Comment #1
paulbeaney commentedFixed in latest D6-DEV version.