1
0
mirror of https://github.com/ezyang/htmlpurifier.git synced 2025-08-01 11:50:28 +02:00

Mod: using stdClass instead of stdclass

This commit is contained in:
Xiphin
2017-06-02 09:55:46 +08:00
parent b9bc1039da
commit 1df505296f
5 changed files with 11 additions and 11 deletions

View File

@@ -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;