Commit:    44c2624f8c7d6bc00f46bc69c77791c2a334cc9a
Author:    Anthony Ferrara <ircmax...@gmail.com>         Mon, 17 Sep 2012 
10:59:51 -0400
Parents:   e034a46bdc36fb82957f5e503fa730776dfbba11
Branches:  master

Link:       
http://git.php.net/?p=php-src.git;a=commitdiff;h=44c2624f8c7d6bc00f46bc69c77791c2a334cc9a

Log:
Fix ucwords error casing

Changed paths:
  M  ext/standard/password.c


Diff:
diff --git a/ext/standard/password.c b/ext/standard/password.c
index 6c2a9af..8e9d894 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;
        }


--
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to