From: Jim Jagielski Date: Mon, 13 May 2002 19:22:27 +0000 (+0000) Subject: More verbose but more generic error message when we spot multiple X-Git-Tag: php-4.3.0dev-ZendEngine2-Preview1~64 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=8006ee79a3efb5a72eb3234e996a776eb757ef29;p=php More verbose but more generic error message when we spot multiple PHPINIDir directives --- 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;