I think I must be missing something here, because obviously it works for
Evan, but in Changeset #1264 (http://laconi.ca/trac/changeset/1264)
where the external libs were added into the source tree, the following
line was added to common.php:
set_include_path(array_merge(get_include_path(), array(INSTALLDIR .
'/extlib/')));
My installation barfs at this, and rightly so I think, because
get_include_path() doesn't return an array.
No problem here, I just took it out, as I'm already including extlib in
my config, but I'm wondering what the effect will be for someone doing a
new install. Something like this would be right I think...
set_include_path(array_merge(explode(PATH_SEPARATOR,get_include_path()),
array(INSTALLDIR . '/extlib/')));
Cheers,
Ciaran
_______________________________________________
Laconica-dev mailing list
[email protected]
http://mail.laconi.ca/mailman/listinfo/laconica-dev