diff options
author | John Ankarström <john@ankarstrom.se> | 2021-09-18 02:25:16 +0200 |
---|---|---|
committer | John Ankarström <john@ankarstrom.se> | 2021-09-18 02:25:16 +0200 |
commit | f8ef7e4a7c538bf392237c6c29caa9dedca6e29e (patch) | |
tree | 5a69b89d1f8879381e5714b54d32206dd45877e9 /t/post.t | |
parent | c1e3206968f9878f8b7883cc7c313cd930c86d04 (diff) | |
download | cforum-f8ef7e4a7c538bf392237c6c29caa9dedca6e29e.tar.gz |
Add README for mktpl
Diffstat (limited to 't/post.t')
-rw-r--r-- | t/post.t | 16 |
1 files changed, 4 insertions, 12 deletions
@@ -13,24 +13,16 @@ <pre> <%= post->text %> </pre> -<% -if(attachment = getattachment(stmt, 0)){ -%> +<% if(attachment = getattachment(stmt, 0)){ %> <h3>Attachments</h3> <table border="1"> - <% - do{ - %> + <% do{ %> <tr> <td><a href="?attachment=<% printf("%d", attachment->id); %>"><%= attachment->name %></a></td> <td><%= attachment->mime %></td> <td><%= attachment->description %></td> </tr> - <% - }while(attachment = getattachment(stmt, 0)); - %> + <% }while(attachment = getattachment(stmt, 0)); %> </table> -<% -} -%> +<% } %> <% #include "foot.tc" %>
\ No newline at end of file |