diff options
Diffstat (limited to 't')
-rw-r--r-- | t/front.t | 4 | ||||
-rw-r--r-- | t/post.t | 10 |
2 files changed, 7 insertions, 7 deletions
@@ -2,8 +2,8 @@ <h1><%= site.name %></h1> <h3>Latest posts</h3> <table border="1"> - <% while(post = getpost(stmt, 0)){ - user = getuser(byid("users", post->user), 1); %> + <% while(post = nextpost(stmt)){ + user = getuser(byid("users", post->user)); %> <tr> <td><a href="?post=<% printf("%d", post->id); %>"><%= post->subject %></a></td> <td><a href="?user=<% printf("%d", post->user); %>"><%= user->name %></a></td> @@ -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 |