From 1edefe62a86ea098034a568dae90b51f25f7b68f Mon Sep 17 00:00:00 2001 From: Matthijs Kooijman Date: Wed, 24 Nov 2010 09:08:52 +0100 Subject: [PATCH] php5: Add the current directory to the include path. It is in there by default, but our local override of the include_path had removed it, breaking stuff. --- etc/php5/cgi/php.ini.local | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/etc/php5/cgi/php.ini.local b/etc/php5/cgi/php.ini.local index eda3532..98dd3d8 100644 --- a/etc/php5/cgi/php.ini.local +++ b/etc/php5/cgi/php.ini.local @@ -29,6 +29,6 @@ cgi.rfc2616_headers = 1 cgi.fix_pathinfo = 1 # Include some global php libraries -include_path = "/var/www/php5-libs" +include_path = "/var/www/php5-libs:." # vim: set filetype=dosini: -- 2.30.2