mirror of
https://github.com/torrentpier/torrentpier
synced 2025-07-07 13:31:42 -07:00
'array_push(...)' misused.
This commit is contained in:
parent
b5065ae0ac
commit
897445bba3
2 changed files with 2 additions and 2 deletions
|
@ -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) {
|
||||
|
|
|
@ -907,7 +907,7 @@ class template
|
|||
break;
|
||||
|
||||
case '(':
|
||||
array_push($is_arg_stack, $i);
|
||||
$is_arg_stack[] = $i;
|
||||
break;
|
||||
|
||||
case 'is':
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue