does not delete emails when pressing "delete" button
Status: Alpha
Brought to you by:
netlogger
The "delete" button on the readmail.php page does not
work. If I press that button at the bottom of the page
when displaying the message, the program simply returns
to the main list, but the item is still there and you
have to remove it again from there.
Logged In: YES
user_id=940097
I had the same problem. To fix it:
1.) Open readmail.php
2.) Around line 143, you'll see <input type=submit
value=\&quot;delete\&quot;>
3.) Change that to <input type=submit name=op
value=\&quot;delete\&quot;>
That fixed it for me. Now I think I'll add in a Javascript
confirm before deleting just in case I hit the button by
accident.
Good Luck,
ff_cus
Logged In: YES
user_id=953731
did not help.
I even tried:
3.) Change that to <input type=submit name=\"op\"
value=\"delete\">
like the other lines had, nothing helped, can't delete.
Logged In: YES
user_id=953731
did not help.
I even tried:
3.) Change that to <input type=submit name=\"op\"
value=\"delete\">
like the other lines had, nothing helped, can't delete.
Logged In: YES
user_id=940097
Use "name=op" NOT "name=\op\" in the input tag for the
button. The slashes only need to be there when you use
quotes.