From: Anthony Ferrara Date: Mon, 17 Sep 2012 14:59:51 +0000 (-0400) Subject: Fix ucwords error casing X-Git-Tag: php-5.5.0alpha1~18^2~17^2~2^2~8 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=44c2624f8c7d6bc00f46bc69c77791c2a334cc9a;p=php Fix ucwords error casing --- diff --git a/ext/standard/password.c b/ext/standard/password.c index 6c2a9af3aa..8e9d8941b5 100644 --- a/ext/standard/password.c +++ b/ext/standard/password.c @@ -185,7 +185,7 @@ PHP_FUNCTION(password_get_info) } if (hash_len < 0 || (size_t) hash_len < 0) { - php_error_docref(NULL TSRMLS_CC, E_WARNING, "Supplied Password Hash Too Long To Safely Identify"); + php_error_docref(NULL TSRMLS_CC, E_WARNING, "Supplied password hash too long to safely identify"); RETURN_FALSE; } @@ -229,7 +229,7 @@ PHP_FUNCTION(password_needs_rehash) } if (hash_len < 0) { - php_error_docref(NULL TSRMLS_CC, E_WARNING, "Supplied Password Hash Too Long To Safely Identify"); + php_error_docref(NULL TSRMLS_CC, E_WARNING, "Supplied password hash too long to safely identify"); RETURN_FALSE; }