ml_admin_transact.php should have these 3 conditions covered in the case statements (
How It Works page 483), but the code provided in the download has completely different cases covered for. What is going on and has anyone else seen this problem?
----
These cases should be covered for:
switch ($action) {
case â
Add New Mailing Listâ:
...
break;
case â
Delete Mailing Listâ:
...
break;
case â
Send Messageâ:
...
break;
}
----
Instead, the code provided in the download has the following for
cases:
from
ml_admin_transact.php
case 'Subscribe':
case 'confirm':
case 'Remove':
So, when you enter a name in the mailing list name field and click "Add New Mailing List," nothing happens because the case isn't covered for. The ml_admin_transact.php file has
user cases covered for instead of
list cases which is very strange.
Please help, thank you
