Chronoforms emails contain this html :
I presume it should include the string returned by JURI::base().
A fix is to modify com_chronocontact.php line around line 423 from
to
<head>
<title></title>
<base href="JURI::base()/" />
</head>
I presume it should include the string returned by JURI::base().
A fix is to modify com_chronocontact.php line around line 423 from
<head>
<title></title>
<base href=\"JURI::base()/\" />
</head>
to
<head>
<title></title>
<base href=\"" . JURI::base(). "/\" />
</head>