Skip to content

Commit

Permalink
Removing extra TSRMLS_DC from merge_append
Browse files Browse the repository at this point in the history
  • Loading branch information
phalcon committed Apr 2, 2014
1 parent 0582a27 commit 73ebc21
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Library/Optimizers/FunctionCall/MergeAppendOptimizer.php
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ public function optimize(array $expression, Call $call, CompilationContext $cont
$context->headersManager->add('kernel/array');

$resolvedParams = $call->getReadOnlyResolvedParams($expression['parameters'], $context, $expression);
$context->codePrinter->output('zephir_merge_append(' . $resolvedParams[0] . ', ' . $resolvedParams[1] . ' TSRMLS_CC);');
$context->codePrinter->output('zephir_merge_append(' . $resolvedParams[0] . ', ' . $resolvedParams[1] . ');');
return new CompiledExpression('null', null, $expression);
}
}

0 comments on commit 73ebc21

Please sign in to comment.