diff options
author | Bharat Mediratta <bharat@menalto.com> | 2010-06-20 09:02:59 -0700 |
---|---|---|
committer | Bharat Mediratta <bharat@menalto.com> | 2010-06-20 09:02:59 -0700 |
commit | 719328a5a7c0086fb97f0dd6b54d5db839696d33 (patch) | |
tree | 10ab0d7ee8dea521698c7f2929e553a2efda6dc5 /modules/gallery/views | |
parent | db53ca550edcb5b90c1d4873751a12c85b08daa4 (diff) |
If we use <?= .. ?> on the last line, it looks like we've got a
trailing ?> and that causes File_Structure_Test to be sad. So instead
use echo and tack on our own newline. But this also requires a
semicolon. Weird, I know but still easier than fixing up the test.
Diffstat (limited to 'modules/gallery/views')
-rw-r--r-- | modules/gallery/views/error_cli.txt.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/gallery/views/error_cli.txt.php b/modules/gallery/views/error_cli.txt.php index b4f87fa6..9f476f54 100644 --- a/modules/gallery/views/error_cli.txt.php +++ b/modules/gallery/views/error_cli.txt.php @@ -1,3 +1,3 @@ <?php defined("SYSPATH") or die("No direct script access.") ?> -<?= Kohana_Exception::text($e) ?> +<? echo Kohana_Exception::text($e), "\n"; |