Loading...
 
Architecture / Installation

Architecture / Installation


Re: Re: error html_entity_decode' is not implemented

posts: 26

That fixed the problem. I'm running PHP 4.2.2. Do you know of any other compatibility issues that I might run into.

Thanks for taking the time to post a response.

2
-- C --

> I had the same problem.
>
> It is caused by html_entity_decode not being supported in PHP before version 4.3
>
> Look for this file:
> templates/mail/user_watch_wiki_page_changed.tpl
>
> You will see html_entity_decode 3 times:
>

> Example:Image
Copy to clipboard
{$mail_diffdata[ix].data[iy]|strip_tags:false|html_entity_decode}

>
> Remove the 3 "|html_entity_decode". Example:

> Image
Copy to clipboard
{$mail_diffdata[ix].data[iy]|strip_tags:false}

>
> Best regards,
>
> M ;-)

There are no comments at this time.