'array_push(...)' misused.

(cherry picked from commit 897445b)
This commit is contained in:
Yuriy Pikhtarev 2017-05-05 01:00:57 +03:00 committed by Vasily Komrakov
commit 8d2c7b258b
No known key found for this signature in database
GPG key ID: 558236680C20A69A
2 changed files with 2 additions and 2 deletions

View file

@ -256,7 +256,7 @@ function strip_quotes($text)
if ($stacksize == 0) {
$newtext .= substr($text, $substr_pos, $pos - $substr_pos);
}
array_push($stack, $pos);
$stack[] = $pos;
} else {
// pop off the latest opened tag
if ($stacksize) {