| Anonymous | Login | Signup for a new account | 02-09-10 21:38 GMT | ![]() |
| Main | My View | View Issues | Change Log | Roadmap |
| View Issue Details [ Jump to Notes ] | [ Print ] | |||||
| ID | Project | Category | View Status | Date Submitted | Last Update | |
| 0008494 | phplist | Message Management | public | 10-11-06 14:16 | 18-02-08 14:08 | |
| Reporter | bhugh | |||||
| Priority | normal | Severity | major | Reproducibility | always | |
| Status | resolved | Resolution | fixed | |||
| Platform | OS | OS Version | ||||
| Product Version | 2.10.2 | |||||
| Target Version | 2.10.7 | Fixed in Version | 2.10.5 | |||
| Summary | 0008494: Once you "exclude" a list you can't "un-exclude" from that message | |||||
| Description | Under the "send a message" function, "lists" tab: If you select a list to be excluded, then save the message or send the message, if you go back and try to "un-check" that list you have excluded so that it is no longer excluded, that change is not saved when you 'save changes' or 'send message' again. Instead, if you go back to the 'lists' tab you discover that the exclude list that you have un-checked is still checked. You can, however, select a different list as an exclude list and that option appears to be saved when you 'save changes' or 'send message'. What you can't do, however, remove *all* lists from the "lists to be excluded". The last one that is un-checked simply becomes checked again when you go back into the lists tab to view it. | |||||
| Tags | No tags attached. | |||||
| Attached Files | ||||||
Relationships |
||||||
|
||||||
Notes |
|
|
(0029713) hernan (developer) 24-07-07 13:01 |
fixed. Changed this if (isset($_POST["excludelist"]) && is_array($_POST["excludelist"])) { $exclude = join(",",$_POST["excludelist"]); Sql_Query(sprintf('replace into %s (name,id,data) values("excludelist",%d,"%s")',$tables["messagedata"],$messageid,$exclude)); } into this: if (USE_LIST_EXCLUDE) { if (isset($_POST["excludelist"]) && is_array($_POST["excludelist"])) { $exclude = join(",",$_POST["excludelist"]); Sql_Query(sprintf('replace into %s (name,id,data) values("excludelist",%d,"%s")',$tables["messagedata"],$messageid,$exclude)); } else { Sql_Query(sprintf('replace into %s (name,id,data) values("excludelist",%d,"%s")',$tables["messagedata"],$messageid,0)); } } |
| Copyright © 2000 - 2010 MantisBT Group |