From 0c84ef9a33d18d758e36447fd18a240a458ae2bc Mon Sep 17 00:00:00 2001
From: Andrey Andreev <narf@devilix.net>
Date: Thu, 1 Dec 2016 15:12:35 +0200
Subject: Remove previously deprecated Security Helper function do_hash()

---
 user_guide_src/source/helpers/security_helper.rst | 27 +----------------------
 1 file changed, 1 insertion(+), 26 deletions(-)

(limited to 'user_guide_src/source/helpers')

diff --git a/user_guide_src/source/helpers/security_helper.rst b/user_guide_src/source/helpers/security_helper.rst
index 103880cf9..e981bc6b6 100644
--- a/user_guide_src/source/helpers/security_helper.rst
+++ b/user_guide_src/source/helpers/security_helper.rst
@@ -48,31 +48,6 @@ The following functions are available:
 	For more info, please see the :doc:`Security Library <../libraries/security>`
 	documentation.
 
-
-.. php:function:: do_hash($str[, $type = 'sha1'])
-
-	:param	string	$str: Input
-	:param	string	$type: Algorithm
-	:returns:	Hex-formatted hash
-	:rtype:	string
-
-	Permits you to create one way hashes suitable for encrypting
-	passwords. Will use SHA1 by default.
-
-	See `hash_algos() <http://php.net/function.hash_algos>`_
-	for a full list of supported algorithms.
-
-	Examples::
-
-		$str = do_hash($str); // SHA1
-		$str = do_hash($str, 'md5'); // MD5
-
-	.. note:: This function was formerly named ``dohash()``, which has been
-		removed in favor of ``do_hash()``.
-
-	.. note:: This function is DEPRECATED. Use the native ``hash()`` instead.
-
-
 .. php:function:: strip_image_tags($str)
 
 	:param	string	$str: Input string
@@ -103,4 +78,4 @@ The following functions are available:
 
 	Example::
 
-		$string = encode_php_tags($string);
\ No newline at end of file
+		$string = encode_php_tags($string);
-- 
cgit v1.2.3-24-g4f1b