I recently updated my Joomla website to 3.7.0. and my contact form is not working properly; it is forever on "sending" status and never becomes "sent".
I do not think there is a problem with the module, but I believe the problematic code below is an issue, because it still persists after deactivating the module.
{
$options['relative'] = isset($options['relative']) ? $options['relative'] : false;
$options['pathOnly'] = isset($options['pathOnly']) ? $options['pathOnly'] : false;
$options['detectBrowser'] = isset($options['detectBrowser']) ? $options['detectBrowser'] : true;
$options['detectDebug'] = isset($options['detectDebug']) ? $options['detectDebug'] : true;
}
I am getting the error "Cannot use a scalar value as an array"
in html.php
.
Please help; this is my first StackOverflow post.