Skip to content

Commit

Permalink
Correct test script open tag
Browse files Browse the repository at this point in the history
  • Loading branch information
laruence committed Sep 27, 2012
1 parent 27ac5f0 commit afbe05c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/059.phpt
Expand Up @@ -39,8 +39,8 @@ file_put_contents(APPLICATION_PATH . "/controllers/Index.php", <<<PHP
PHP
);

file_put_contents(APPLICATION_PATH . "/views/index/index.phtml", "<?print_r(\$this); \$this->display('index/sub.phtml', array('content' => 'dummy'));?>");
file_put_contents(APPLICATION_PATH . "/views/index/sub.phtml", "<?echo \$content; echo \$this->eval('foobar'); ?>");
file_put_contents(APPLICATION_PATH . "/views/index/index.phtml", "<?php print_r(\$this); \$this->display('index/sub.phtml', array('content' => 'dummy'));?>");
file_put_contents(APPLICATION_PATH . "/views/index/sub.phtml", "<?php echo \$content; echo \$this->eval('foobar'); ?>");

$app = new Yaf_Application($config);
$response = $app->bootstrap()->run();
Expand Down

0 comments on commit afbe05c

Please sign in to comment.