diff options
author | friendica <info@friendica.com> | 2015-01-01 22:18:27 -0800 |
---|---|---|
committer | friendica <info@friendica.com> | 2015-01-01 22:18:27 -0800 |
commit | a0052f0176bd079e6a94baec59fea2ec5a8d651e (patch) | |
tree | c323edd823681bc2e8ca757e7eaf8354d42c7b51 /library/HTMLPurifier/IDAccumulator.php | |
parent | 545e47933a0816699c68d98a7742a03260d6a54f (diff) | |
download | volse-hubzilla-a0052f0176bd079e6a94baec59fea2ec5a8d651e.tar.gz volse-hubzilla-a0052f0176bd079e6a94baec59fea2ec5a8d651e.tar.bz2 volse-hubzilla-a0052f0176bd079e6a94baec59fea2ec5a8d651e.zip |
htmlpurifier update - compatibility issue with language library autoloader
Diffstat (limited to 'library/HTMLPurifier/IDAccumulator.php')
-rw-r--r-- | library/HTMLPurifier/IDAccumulator.php | 24 |
1 files changed, 14 insertions, 10 deletions
diff --git a/library/HTMLPurifier/IDAccumulator.php b/library/HTMLPurifier/IDAccumulator.php index 73215295a..65c902c07 100644 --- a/library/HTMLPurifier/IDAccumulator.php +++ b/library/HTMLPurifier/IDAccumulator.php @@ -17,11 +17,12 @@ class HTMLPurifier_IDAccumulator /** * Builds an IDAccumulator, also initializing the default blacklist - * @param $config Instance of HTMLPurifier_Config - * @param $context Instance of HTMLPurifier_Context - * @return Fully initialized HTMLPurifier_IDAccumulator + * @param HTMLPurifier_Config $config Instance of HTMLPurifier_Config + * @param HTMLPurifier_Context $context Instance of HTMLPurifier_Context + * @return HTMLPurifier_IDAccumulator Fully initialized HTMLPurifier_IDAccumulator */ - public static function build($config, $context) { + public static function build($config, $context) + { $id_accumulator = new HTMLPurifier_IDAccumulator(); $id_accumulator->load($config->get('Attr.IDBlacklist')); return $id_accumulator; @@ -29,11 +30,14 @@ class HTMLPurifier_IDAccumulator /** * Add an ID to the lookup table. - * @param $id ID to be added. - * @return Bool status, true if success, false if there's a dupe + * @param string $id ID to be added. + * @return bool status, true if success, false if there's a dupe */ - public function add($id) { - if (isset($this->ids[$id])) return false; + public function add($id) + { + if (isset($this->ids[$id])) { + return false; + } return $this->ids[$id] = true; } @@ -42,12 +46,12 @@ class HTMLPurifier_IDAccumulator * @param $array_of_ids Array of IDs to load * @note This function doesn't care about duplicates */ - public function load($array_of_ids) { + public function load($array_of_ids) + { foreach ($array_of_ids as $id) { $this->ids[$id] = true; } } - } // vim: et sw=4 sts=4 |