Skip to content

Commit

Permalink
[HttpKernel] fixed typo
Browse files Browse the repository at this point in the history
  • Loading branch information
fabpot committed Aug 18, 2010
1 parent cbdde58 commit 47a26a0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Symfony/Components/HttpKernel/Cache/Esi.php
Expand Up @@ -210,7 +210,7 @@ protected function handleEsiIncludeTag($attributes)
throw new \RuntimeException('Unable to process an ESI tag without a "src" attribute.');
}

return sprintf('<?php echo $this->esi->handle($this, \'%s\', \'%s\', %s)->getContent() ?>'."\n",
return sprintf('<?php echo $this->esi->handle($this, \'%s\', \'%s\', %s) ?>'."\n",
$options['src'],
isset($options['alt']) ? $options['alt'] : null,
isset($options['onerror']) && 'continue' == $options['onerror'] ? 'true' : 'false'
Expand Down

0 comments on commit 47a26a0

Please sign in to comment.