From: Rasmus Lerdorf Date: Tue, 3 Jul 2001 04:18:38 +0000 (+0000) Subject: Trivial fix - but the period looks odd in error messages X-Git-Tag: PRE_TSRM_MERGE_PATCH~289 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=fb8e6146904698286f7526c40ee90ac9e73b69f5;p=php Trivial fix - but the period looks odd in error messages --- diff --git a/Zend/zend_API.c b/Zend/zend_API.c index de717af81e..a4c9d7ec9b 100644 --- a/Zend/zend_API.c +++ b/Zend/zend_API.c @@ -889,7 +889,7 @@ ZEND_API int zend_set_hash_symbol(zval *symbol, char *name, int name_length, static ZEND_FUNCTION(display_disabled_function) { - zend_error(E_WARNING, "%s() has been disabled for security reasons.", get_active_function_name()); + zend_error(E_WARNING, "%s() has been disabled for security reasons", get_active_function_name()); }