1
0
mirror of https://github.com/ezyang/htmlpurifier.git synced 2025-07-30 19:00:10 +02:00

Remove Singleton functionality, the accumulator will just have to be passed around.

git-svn-id: http://htmlpurifier.org/svnroot/htmlpurifier/trunk@130 48356398-32a2-884e-a903-53898d9a118a
This commit is contained in:
Edward Z. Yang
2006-07-30 16:01:24 +00:00
parent 4ab930dab4
commit bba0d0b77a
2 changed files with 1 additions and 18 deletions

View File

@@ -5,23 +5,11 @@ class HTMLPurifier_IDAccumulator
var $ids = array();
function &instance() {
static $instance = null;
if (empty($instance)) {
$instance = new HTMLPurifier_IDAccumulator();
}
return $instance;
}
function add($id) {
if (isset($this->ids[$id])) return false;
return $this->ids[$id] = true;
}
function reset() {
$this->ids = array();
}
}
?>