diff options
author | Natanael Copa <natanael.copa@gmail.com> | 2008-07-28 06:48:16 +0000 |
---|---|---|
committer | Natanael Copa <natanael.copa@gmail.com> | 2008-07-28 06:48:16 +0000 |
commit | e4b39f4255aff6f974eb1a1e4e78fe01587814aa (patch) | |
tree | f59de39a0fb4325e2b8623d734cf23ab7a6ada56 /app/exception-html.lsp | |
parent | 4bf00bc98b36c0233e1ea833571acffefe2ec73b (diff) | |
download | acf-core-e4b39f4255aff6f974eb1a1e4e78fe01587814aa.tar.bz2 acf-core-e4b39f4255aff6f974eb1a1e4e78fe01587814aa.tar.xz |
use <% %> instead of <? ?>
git-svn-id: svn://svn.alpinelinux.org/acf/core/trunk@1323 ab2d0c66-481e-0410-8bed-d214d4d58bed
Diffstat (limited to 'app/exception-html.lsp')
-rw-r--r-- | app/exception-html.lsp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/app/exception-html.lsp b/app/exception-html.lsp index 94aa1da..9b7a441 100644 --- a/app/exception-html.lsp +++ b/app/exception-html.lsp @@ -1,7 +1,7 @@ -<? view = ... ?> -<? --[[ +<% view = ... %> +<% --[[ io.write(html.cfe_unpack(view)) ---]] ?> +--]] %> <style type="text/css"> p.hiddendetail { @@ -27,4 +27,4 @@ <h1>Alpine Configuration Framework</h1> <p class="errordetail">Application error occured</p> -<p class="hiddendetail"><?= view.message ?></p> +<p class="hiddendetail"><%= view.message %></p> |