| Anonymous | Login | Signup for a new account | 21-11-09 08:56 GMT |
| Main | My View | View Issues | Change Log | Roadmap | Docs |
| Viewing Issue Simple Details [ Jump to Notes ] | [ View Advanced ] [ Print ] | ||||||
| ID | Category | Severity | Reproducibility | Date Submitted | Last Update | ||
| 0008457 | [phplist] Bounce Management | minor | always | 07-11-06 15:08 | 18-02-08 14:06 | ||
| Reporter | orock | View Status | public | ||||
| Assigned To | |||||||
| Priority | normal | Resolution | fixed | ||||
| Status | resolved | Product Version | 2.10.3 | ||||
| Summary | 0008457: $bounce_unsubscribe_t[h]reshold problem upgrading from 2.10.2 to 2.10.3 | ||||||
| Description |
we made an unknowing mistake when upgrading from 2.10.2 to 2.10.3 of copying lines from our previous config.php to the new one. we ended up with: $bounce_unsubscribe_treshold = 5; instead of: $bounce_unsubscribe_threshold = 5; this caused our users to be unconfirmed on their first bounce since $bounce_unsubscribe_threshold is unset. i noticed in admin/init.php some code attempting to correct this spelling error in previous version but it is incorrect and will never kick in. the code reads: ## spelling mistake in earlier version, make sure to set it correctly if (!isset($bounce_unsubscribe_threshold) && isset($bounce_unsubscribe_threshold)) { $bounce_unsubscribe_threshold = $bounce_unsubscribe_treshold; } this checks if the correct value ($bounce_unsubscribe_threshold) IS NOT SET and whether the correct value ($bounce_unsubscribe_threshold) IS SET. this will obviously never be true and clearly should be a check for correct value ($bounce_unsubscribe_threshold) NOT SET and for incorrect value ($bounce_unsubscribe_treshold) SET. we have fixed the problem by correcting the spelling in the config.php file but this was confounding us for a while be cause $bounce_unsubscribe_threshold looks soooo much like $bounce_unsubscribe_treshold. |
||||||
| Additional Information | |||||||
| Tags | No tags attached. | ||||||
| Attached Files | |||||||
|
|
|||||||
Relationships |
|||||||||||
|
|||||||||||
| Mantis 1.1.6[^] Copyright © 2000 - 2008 Mantis Group |