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 | 5aa214f71f495db0d0d75e9e16f2677d6a09f585 (patch) | |
tree | 051e1f9282f71121d7f8125dd22e32beb92c57e3 /health-proc-html.lsp | |
parent | 9fcda9ad78f8c42ed291c10e8bfea3e3000c30a3 (diff) | |
download | acf-alpine-baselayout-5aa214f71f495db0d0d75e9e16f2677d6a09f585.tar.bz2 acf-alpine-baselayout-5aa214f71f495db0d0d75e9e16f2677d6a09f585.tar.xz |
use <% %> instead of <? ?>
git-svn-id: svn://svn.alpinelinux.org/acf/alpine-baselayout/trunk@1323 ab2d0c66-481e-0410-8bed-d214d4d58bed
Diffstat (limited to 'health-proc-html.lsp')
-rw-r--r-- | health-proc-html.lsp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/health-proc-html.lsp b/health-proc-html.lsp index 299c605..6e52d21 100644 --- a/health-proc-html.lsp +++ b/health-proc-html.lsp @@ -1,9 +1,9 @@ -<? local view = ... ?> +<% local view = ... %> <h1>Process information</h1> <h2>Processor</h2> -<pre><?= view.value.processor.value ?></pre> +<pre><%= view.value.processor.value %></pre> <h2>Memory</h2> -<pre><?= view.value.memory.value ?></pre> +<pre><%= view.value.memory.value %></pre> |