diff options
author | John Ankarström <john@ankarstrom.se> | 2021-09-18 10:38:09 +0200 |
---|---|---|
committer | John Ankarström <john@ankarstrom.se> | 2021-09-18 10:38:09 +0200 |
commit | 0292e86cf884a26108a59d81d69cee83b54f4c88 (patch) | |
tree | 3f5b30fe172013802955213503a5827616be6fec /t/post.t | |
parent | ae9b583b9575679f129680a0f56163fdb6590052 (diff) | |
download | cforum-0292e86cf884a26108a59d81d69cee83b54f4c88.tar.gz |
Clean up database code
Diffstat (limited to 't/post.t')
-rw-r--r-- | t/post.t | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -13,16 +13,16 @@ <pre> <%= post->text %> </pre> -<% if(attachment = getattachment(stmt, 0)){ %> +<% if(att = nextatt(stmt)){ %> <h3>Attachments</h3> <table border="1"> <% do{ %> <tr> - <td><a href="?attachment=<% printf("%d", attachment->id); %>"><%= attachment->name %></a></td> - <td><%= attachment->mime %></td> - <td><%= attachment->description %></td> + <td><a href="?att=<% printf("%d", att->id); %>"><%= att->name %></a></td> + <td><%= att->mime %></td> + <td><%= att->description %></td> </tr> - <% }while(attachment = getattachment(stmt, 0)); %> + <% }while(att = nextatt(stmt)); %> </table> <% } %> <% #include "foot.tc" %>
\ No newline at end of file |