PhpCompatibilityNotes

Version 1 (Andrew Dolgov, 10/21/2009 09:10 PM)

1 1
= Tiny Tiny RSS and PHP versions =
2 1
3 1
Since '''1.3.4''' tt-rss is using [http://htmlpurifier.org/ HTML Purifier] which seems to be [http://tt-rss.org/forum/viewtopic.php?f=1&t=534&p=2488# incompatible] with PHP4. Rest of the code should be compatible, so if you are still running PHP4 you can try disabling HTML Purifier by taking these steps:
4 1
5 1
1. Remove the directive to include HTML Purifier in functions.php:109 (e.g. require_once ... HTMLPurifier.auto.php).
6 1
7 1
2. Comment out or remove current version of strip_tags_long() in functions.php:3559 which depends on HTML Purifier and uncomment older version below. Note that older version didn't perform correctly in all cases so you might experience broken HTML being displayed.