Hi,
1) About updating to 2.0.x -> It's designed to work without any loss of data, forms etc. I tested it and many other people have already used the update. I've not heard of any problems. But, for it's a major change please make a complete backup of your Joomla! installation first (just in case and it's good practise anyway).
2) I just sent you the change file which will work with your installation.
3) For everbody: Here the changes for Visforms 1.0.x
First Replacement is the same
Second Replacement is different
Find (about line 840)
Code:
if ($t_texttype == 'email') {
$isEmail = true;
}
and replace it with
Code:
if ($t_texttype == 'email') {
$isEmail = true;
$emailSender = $fieldValue;
}
Third replacement is slightly different
Find (about line 875)
Code:
$mail->setSender( array( $visform->emailfrom, "" ) );
Replace it with
Code:
if ($emailSender == "")
{
$emailSender = $visform->emailfrom;
}
$mail->setSender( array( $emailSender, "" ) );
Regards,
Aicha