Closed (won't fix)
Project:
PEAR Wiki Filter
Version:
5.x-1.1
Component:
Code
Priority:
Critical
Category:
Bug report
Assigned:
Reporter:
Created:
1 Sep 2007 at 17:10 UTC
Updated:
18 Dec 2014 at 11:05 UTC
Jump to comment: Most recent
I have got this message when save wiki-formatted post (with interwiki-links):
Fatal error: Class 'PEAR' not found in /usr/share/pear/Text/Wiki.php on line 412
This is because class in Text/Wiki.php does not extend class Pear so this class should be included in your module.
To fix this find line 468 in pearwiki_filter.module:
@include_once 'Text/Wiki.php';
and replace with:
// needed for error checking
@require_once 'PEAR.php';
@include_once 'Text/Wiki.php';
That's all. Thanks for your good work!
Comments
Comment #1
mrded commented5.x-1.1 is no longer supported.