]> granicus.if.org Git - php/commitdiff
Trivial fix - but the period looks odd in error messages
authorRasmus Lerdorf <rasmus@php.net>
Tue, 3 Jul 2001 04:18:38 +0000 (04:18 +0000)
committerRasmus Lerdorf <rasmus@php.net>
Tue, 3 Jul 2001 04:18:38 +0000 (04:18 +0000)
Zend/zend_API.c

index de717af81e775b78ba406519d875911145f48dbb..a4c9d7ec9bb0eddf76c0a322bd7553c93670bf2e 100644 (file)
@@ -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());
 }