aboutsummaryrefslogtreecommitdiffstats
path: root/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Generator.php
diff options
context:
space:
mode:
authorKlaus Weidenbach <Klaus.Weidenbach@gmx.net>2017-07-06 21:33:07 +0200
committerKlaus Weidenbach <Klaus.Weidenbach@gmx.net>2017-07-06 21:35:10 +0200
commit31d1a728544f7ae740463cd0d1f345544175fcd2 (patch)
treefdfd2b1908a87f6e1396046ee95307506c079172 /vendor/ezyang/htmlpurifier/library/HTMLPurifier/Generator.php
parentf9a989fe1b0944b9b7d896b23544522fd42c4fd7 (diff)
downloadvolse-hubzilla-31d1a728544f7ae740463cd0d1f345544175fcd2.tar.gz
volse-hubzilla-31d1a728544f7ae740463cd0d1f345544175fcd2.tar.bz2
volse-hubzilla-31d1a728544f7ae740463cd0d1f345544175fcd2.zip
:arrow_up: Updating some PHP libraries.
htmlpurifier (v4.9.2 => v4.9.3) with bugfix for PHP7.1 sabre/http (4.2.2 => 4.2.3)
Diffstat (limited to 'vendor/ezyang/htmlpurifier/library/HTMLPurifier/Generator.php')
-rw-r--r--vendor/ezyang/htmlpurifier/library/HTMLPurifier/Generator.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Generator.php b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Generator.php
index 6fb568714..eb56e2dfa 100644
--- a/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Generator.php
+++ b/vendor/ezyang/htmlpurifier/library/HTMLPurifier/Generator.php
@@ -146,7 +146,7 @@ class HTMLPurifier_Generator
$attr = $this->generateAttributes($token->attr, $token->name);
if ($this->_flashCompat) {
if ($token->name == "object") {
- $flash = new stdclass();
+ $flash = new stdClass();
$flash->attr = $token->attr;
$flash->param = array();
$this->_flashStack[] = $flash;