|
|
cool hacks
|
|
|
|
 |
Mailing List Manager image handling
|
 |
|
|
|
of
earthstations.com with help from Ignacio sent in the
following fix for the Mailing List Manager...
The other day I emailed you in regards to eXtropia listing a
link to earthstations.com to show people the Mailing List Manager in action.
I also mentioned that I fixed the script to handle image forms as
well as standard forms for submission.
This fix Ignacio Bustemante sent me.
---------------------------------------------------
foreach (keys %form_data)
{
# Fix incoming form data with Image buttons
$form_data{$1} = $form_data{$_} if (/(.*)\.x/);
}
---------------------------------------------------
Place the above code right after where it reads "&ReadParse(*form_data);"
|
|