Subversion Repositories taios

Compare Revisions

Ignore whitespace Rev 45 → Rev 48

/_taios.php
67,7 → 67,7
function drawMenuItem($t, $u)
{
write('<p><a href="' . $this->url . $u . '"</a>' . $t . '</a></p>');
write('<p><a href="' . $this->url . $u . '"/>' . $t . '</a></p>');
}
function drawMiddle()
/blog/post.php
14,7 → 14,7
 
if ($page->isUserGM($page->getLoggedInUser()))
{
write('<p class="bold"><a href="add-post.php">Add Post</a></p>');
write('<p class="bold"><a href="add-post.php?id="' . $_GET['id'] . '">Add Comment</a></p>');
write('<br />');
}
 
/blog/index.php
10,7 → 10,7
 
if ($page->isUserGM($page->getLoggedInUser()))
{
write('<p class="bold"><a href="add-post.php">Add Post</a></p>');
write('<p class="bold"><a href="add-post.php?id=-1">Add Post</a></p>');
write('<br />');
}
 
/admin/account-do.php
1,8 → 1,8
<?php
 
require '_taios.php';
require '../_taios.php';
 
$page = new Taios_Page('Update Account');
$page = new Taios_Page('Update Account', '../');
$userID = $page->getPostID();
 
$page->checkLoggedIn();