Subversion Repositories taios

Compare Revisions

Ignore whitespace Rev 101 → Rev 102

/admin/all-blog-posts.php
29,7 → 29,7
{
$post = $page->getBlogPost($ids[$i]);
write('<tr>');
write('<td>' . $post->ID . '</td>');
write('<td><a href="../blog/edit-post.php?id=' . $post->ID . '">' . $post->ID . '</a></td>');
if ($post->parent == -1)
{
write('<td>' . $post->parent . '</td>');
/admin/all-accounts.php
28,7 → 28,7
{
$user = $page->getUserByID($ids[$i]);
write('<tr>');
write('<td>' . $user->ID . '</td>');
write('<td><a href="account.php?id=' . $user->ID . '">' . $user->ID . '</a></td>');
write('<td>' . $user->accessID . '</td>');
write('<td>' . $user->username . '</td>');
write('<td>' . $user->password . '</td>');