Forums

PHP Notice $text

brandon 29 Aug, 2008
I'm using Joomla 1.5.5 and have received this error in the logs a few times. I couldn't find assistance with it so I thought i'd throw in a suggestion as a quickfix.
PHP Notice: Undefined property: JParameter::$text in /home/client/plugins/content/chronocontact.php on line 18

in chronocontact.php change:

$row->text = preg_replace_callback( $regex, 'showform2', $row->text );


to:

if(isset($row->text))
$row->text = preg_replace_callback( $regex, 'showform2', $row->text );
else
$row->text = "";

Max_admin 29 Aug, 2008
Hi Brandon,

thanks for the suggestion, it happens when you content item is empty, I will move this to the correct forums!

Regards,
Max
Max, ChronoForms developer
ChronoMyAdmin: Database administration within Joomla, no phpMyAdmin needed.
ChronoMails simplifies Joomla email: newsletters, logging, and custom templates.
This topic is locked and no more replies can be posted.