From 8719a5c7fe75b84f49f584065e5ef4e4e2a0f16f Mon Sep 17 00:00:00 2001 From: Derek Allard Date: Thu, 8 Oct 2009 16:42:59 +0000 Subject: Deprecated the dohash() function in favour of do_hash() for naming consistency. --- user_guide/helpers/security_helper.html | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'user_guide/helpers') diff --git a/user_guide/helpers/security_helper.html b/user_guide/helpers/security_helper.html index 5732cb7db..dfc813c66 100644 --- a/user_guide/helpers/security_helper.html +++ b/user_guide/helpers/security_helper.html @@ -75,16 +75,17 @@ Security Helper Input class. More info can be found there.

-

dohash()

+

do_hash()

Permits you to create SHA1 or MD5 one way hashes suitable for encrypting passwords. Will create SHA1 by default. Examples:

-$str = dohash($str); // SHA1
+$str = do_hash($str); // SHA1

-$str = dohash($str, 'md5'); // MD5 +$str = do_hash($str, 'md5'); // MD5
+

Note: This function was formerly named dohash(), which has been deprecated in favour of do_hash().

-- cgit v1.2.3-24-g4f1b