/**
* Add free-form text with HTML formatting to the object's buffer
*
* @access public
* @param string $text The text string to add
* @return string An HTML string if ReturnHTML() has been called,
* otherwise null
*/
function TextHTML($text)
{
if ($this->GetInputMode() == _PNH_PARSEINPUT)
{
$text = pnVarPrepHTMLDisplay($text);
}
//// start
/**
* Add free-form text with HTML formatting to the object's buffer
*
* @access public
* @param string $text The text string to add
* @return string An HTML string if ReturnHTML() has been called,
* otherwise null
*/
function TextHTML($text)
{
if ($this->GetInputMode() == _PNH_PARSEINPUT)
{
$text = pnVarPrepHTMLDisplay($text);
}
In your code the closing“}” is missing. That’s the reason for the last called mistake.
Meanwhile PN0.764 is released. So the problem is also existing.
The insertation of the missing function caused no changing of the first error information. Of course this error information is further displayed.
Can you please offer the right pnHTML.php as a download?