View Issue Details
ID | Project | Category | View Status | Date Submitted | Last Update |
---|---|---|---|---|---|
0006638 | phpList 3 application | Bounce Management | public | 16-06-06 10:28 | 18-02-08 14:08 |
Reporter | hola | ||||
Priority | normal | Severity | major | Reproducibility | always |
Status | resolved | Resolution | fixed | ||
Product Version | 2.10.2 | ||||
Target Version | 2.10.7 | Fixed in Version | 2.10.5 | ||
Summary | 0006638: bounce.php | ||||
Description | Is it me or does the bounce.php file ignore my tick to delete user? I had a look at bounce.php and it seems to get the deleteuser checkbox using a $_POST when on the html form generated on the bounce page the form method has been set to GET?? Plus the $deletebounce var seems to be set with true or false outside of the bounce file because its value is honoured and I can delete or not delete bounce records. Help! | ||||
Tags | No tags attached. | ||||
|
Tomwing reported "BUG when trying to delete a BOUNCE" on the forum, http://forums.phplist.com/viewtopic.php?p=33934#33934 and includes the followsing fix: File: bounces.php Line Number 6: // This is wrong, because the delete command is a GET Link: if (isset($_POST['delete']) && $_POST['delete']) { # delete the index in delete print $GLOBALS['I18N']->get('deleting').' '.$_POST['delete']."..\n"; if ($GLOBALS["require_login"] && !isSuperUser()) { } else { deleteBounce($_POST['delete']); } print $GLOBALS['I18N']->get('done') . " <hr> \n"; } // this is right: if (isset($_REQUEST['delete']) && $_REQUEST['delete']) { # delete the index in delete print $GLOBALS['I18N']->get('deleting').' '.$_POST['delete']."..\n"; if ($GLOBALS["require_login"] && !isSuperUser()) { } else { deleteBounce($_REQUEST['delete']); } print $GLOBALS['I18N']->get('done') . " <hr> \n"; } |
|
Thanks, will be implemented in 2.10.5 And btw, it was the bounces.php file, no bounce.php |