From 5ee719bae00cabf037b93a99dbf50485aba40e17 Mon Sep 17 00:00:00 2001 From: foobar Date: Sat, 27 Oct 2001 10:14:14 +0000 Subject: [PATCH] Modified the error message a bit. Happy now Andi? :) --- ext/zlib/zlib.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ext/zlib/zlib.c b/ext/zlib/zlib.c index 941d9f0da5..292ca1e781 100644 --- a/ext/zlib/zlib.c +++ b/ext/zlib/zlib.c @@ -139,7 +139,7 @@ static PHP_INI_MH(OnUpdate_zlib_output_compression) ini_value = php_ini_string("output_handler", sizeof("output_handler"), 0); if (new_value != NULL && strlen(ini_value) != 0) { - php_error(E_CORE_ERROR,"Cannot use both zlib.output_compression and output_handler!!"); + php_error(E_CORE_ERROR,"Cannot use both zlib.output_compression and output_handler together!!"); return FAILURE; } -- 2.50.1