I have been running my site with Joomla error reporting in Global configuration set to maximum, whilst hunting out another problem in my Joomla site.
Whilst this setting was turned on I also noticed that any of my forms being displayed using the ChronoForms Content Plugin also threw this error
I have had a look at the line in question that reads
I am at a loss as to how to fix this.
This has no bearing on a site with Joomla error reporting in Global configuration set to system default.
I simply thought it should be mentioned as it may point to an underlying bug that is in need of attention.
Thanks
Ro.
Whilst this setting was turned on I also noticed that any of my forms being displayed using the ChronoForms Content Plugin also threw this error
Notice: Undefined variable: posted in /var/www/vhosts/reallyeasyreader.com/httpdocs/plugins/content/chronocontact.php on line 135
I have had a look at the line in question that reads
<?php if (($posted)&&($paramsvalues->captcha_dataload)){ ?>
I am at a loss as to how to fix this.
This has no bearing on a site with Joomla error reporting in Global configuration set to system default.
I simply thought it should be mentioned as it may point to an underlying bug that is in need of attention.
Thanks
Ro.
Hi datatonic.
Hmmm . . . Max may know? That's the only mention of $posted in the file so I'm inclined to think that it's a leftover and the fix is to delete ($posted)&& but I'm far from certain.
Bob
Hmmm . . . Max may know? That's the only mention of $posted in the file so I'm inclined to think that it's a leftover and the fix is to delete ($posted)&& but I'm far from certain.
Bob
Hi datatonic.
which plugin version you are using ?
Max
which plugin version you are using ?
Max
nice catch, after
Cheers
Max
global $mainframe;
we will need to add this line :$posted = JRequest::get( 'post' , JREQUEST_ALLOWRAW );
Cheers
Max
This topic is locked and no more replies can be posted.