浏览代码

Remove deprecated functions

Mark Scherer 10 年之前
父节点
当前提交
8a17f3caf3
共有 1 个文件被更改,包括 0 次插入18 次删除
  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
 	 *
 	 */