From 8006ee79a3efb5a72eb3234e996a776eb757ef29 Mon Sep 17 00:00:00 2001 From: Jim Jagielski Date: Mon, 13 May 2002 19:22:27 +0000 Subject: [PATCH] More verbose but more generic error message when we spot multiple PHPINIDir directives --- sapi/apache2filter/apache_config.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sapi/apache2filter/apache_config.c b/sapi/apache2filter/apache_config.c index c47999e7ef..a46c99222a 100644 --- a/sapi/apache2filter/apache_config.c +++ b/sapi/apache2filter/apache_config.c @@ -86,7 +86,7 @@ static const char *php_apache_admin_value_handler(cmd_parms *cmd, void *dummy, c static const char *php_apache_phpini_set(cmd_parms *cmd, void *mconfig, const char *arg) { if (apache2_php_ini_path_override) { - return "PHPINIDir is not yet supported in vhost configurations"; + return "Only first PHPINIDir directive honored per configuration tree - subsequent ones ignored"; } apache2_php_ini_path_override = ap_server_root_relative(cmd->pool, arg); return NULL; -- 2.50.1