Browse Source

Remove deprecated functions

Mark Scherer 10 years ago
parent
commit
8a17f3caf3
1 changed files with 0 additions and 18 deletions
  1. 0 18
      src/Utility/Utility.php

+ 0 - 18
src/Utility/Utility.php

@@ -456,24 +456,6 @@ class Utility {
 	}
 	}
 
 
 	/**
 	/**
-	 * Removes all except A-Z,a-z,0-9 and allowedChars (allowedChars array) recursivly
-	 *
-	 */
-	public static function paranoidDeep($value) {
-		$value = is_array($value) ? array_map('self::paranoidDeep', $value) : Sanatize::paranoid($value, $this->allowedChars);
-		return $value;
-	}
-
-	/**
-	 * Transfers/removes all < > from text (remove TRUE/FALSE)
-	 *
-	 */
-	public static function htmlDeep($value) {
-		$value = is_array($value) ? array_map('self::htmlDeep', $value) : Sanatize::html($value, $this->removeChars);
-		return $value;
-	}
-
-	/**
 	 * Main deep method
 	 * Main deep method
 	 *
 	 *
 	 */
 	 */