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. --- system/helpers/security_helper.php | 20 ++++++++++++++++++-- 1 file changed, 18 insertions(+), 2 deletions(-) (limited to 'system/helpers/security_helper.php') diff --git a/system/helpers/security_helper.php b/system/helpers/security_helper.php index 9cc70aaff..8fb53e718 100644 --- a/system/helpers/security_helper.php +++ b/system/helpers/security_helper.php @@ -46,6 +46,22 @@ if ( ! function_exists('xss_clean')) // -------------------------------------------------------------------- +/** + * Hash encode a string + * + * This is simply an alias for do_hash() + * dohash() is now deprecated + */ +if ( ! function_exists('dohash')) +{ + function dohash($str, $type = 'sha1') + { + return $this->do_hash($str, $type); + } +} + +// -------------------------------------------------------------------- + /** * Hash encode a string * @@ -53,9 +69,9 @@ if ( ! function_exists('xss_clean')) * @param string * @return string */ -if ( ! function_exists('dohash')) +if ( ! function_exists('do_hash')) { - function dohash($str, $type = 'sha1') + function do_hash($str, $type = 'sha1') { if ($type == 'sha1') { -- cgit v1.2.3-24-g4f1b