summaryrefslogtreecommitdiffstats
path: root/system/helpers/security_helper.php
diff options
context:
space:
mode:
authorPascal Kriete <pascal.kriete@ellislab.com>2010-11-04 22:59:52 +0100
committerPascal Kriete <pascal.kriete@ellislab.com>2010-11-04 22:59:52 +0100
commite917f9be8b05c81357c1c2c9730d5060685d644d (patch)
treeb6a7d5ce8ba57b69ba61454f77829b04f2ce5974 /system/helpers/security_helper.php
parent5b2d2da5ae2e97043c6bef53e565d30e50196e2b (diff)
parente1f6e9ddff788f6a154f5f35dc117d14aeb0c484 (diff)
Automated merge with http://hg.ellislab.com/CodeIgniter2
Diffstat (limited to 'system/helpers/security_helper.php')
-rw-r--r--system/helpers/security_helper.php24
1 files changed, 12 insertions, 12 deletions
diff --git a/system/helpers/security_helper.php b/system/helpers/security_helper.php
index 63f0e9cdb..08dd48a85 100644
--- a/system/helpers/security_helper.php
+++ b/system/helpers/security_helper.php
@@ -34,7 +34,7 @@
* @param string
* @param bool whether or not the content is an image file
* @return string
- */
+ */
if ( ! function_exists('xss_clean'))
{
function xss_clean($str, $is_image = FALSE)
@@ -52,7 +52,7 @@ if ( ! function_exists('xss_clean'))
* @access public
* @param string
* @return string
- */
+ */
if ( ! function_exists('sanitize_filename'))
{
function sanitize_filename($filename)
@@ -71,7 +71,7 @@ if ( ! function_exists('sanitize_filename'))
* dohash() is now deprecated
*/
if ( ! function_exists('dohash'))
-{
+{
function dohash($str, $type = 'sha1')
{
return do_hash($str, $type);
@@ -86,9 +86,9 @@ if ( ! function_exists('dohash'))
* @access public
* @param string
* @return string
- */
+ */
if ( ! function_exists('do_hash'))
-{
+{
function do_hash($str, $type = 'sha1')
{
if ($type == 'sha1')
@@ -96,7 +96,7 @@ if ( ! function_exists('do_hash'))
if ( ! function_exists('sha1'))
{
if ( ! function_exists('mhash'))
- {
+ {
require_once(BASEPATH.'libraries/Sha1'.EXT);
$SH = new CI_SHA;
return $SH->generate($str);
@@ -109,7 +109,7 @@ if ( ! function_exists('do_hash'))
else
{
return sha1($str);
- }
+ }
}
else
{
@@ -117,7 +117,7 @@ if ( ! function_exists('do_hash'))
}
}
}
-
+
// ------------------------------------------------------------------------
/**
@@ -126,18 +126,18 @@ if ( ! function_exists('do_hash'))
* @access public
* @param string
* @return string
- */
+ */
if ( ! function_exists('strip_image_tags'))
{
function strip_image_tags($str)
{
$str = preg_replace("#<img\s+.*?src\s*=\s*[\"'](.+?)[\"'].*?\>#", "\\1", $str);
$str = preg_replace("#<img\s+.*?src\s*=\s*(.+?).*?\>#", "\\1", $str);
-
+
return $str;
}
}
-
+
// ------------------------------------------------------------------------
/**
@@ -146,7 +146,7 @@ if ( ! function_exists('strip_image_tags'))
* @access public
* @param string
* @return string
- */
+ */
if ( ! function_exists('encode_php_tags'))
{
function encode_php_tags($str)