Author: bugzilla
Description:
LocalSettings.php includes this line:
ini_set( "include_path", ".;$IP;$IP/includes;$IP/languages" );
However, for email confirmations, PEAR is used (never mind there's no mention of
that in the install docs!) and its directory also needs to be included.
I put this in my file, and it seems like a reasonable thing to have in the
standard install:
$include_path = ini_get( "include_path" ); ini_set( "include_path", "$include_path;$IP;$IP/includes;$IP/languages" );
Version: 1.5.x
Severity: normal