1
0

*** empty log message ***

This commit is contained in:
Stefan Frech
2008-06-03 18:40:22 +00:00
committed by Jonas Kattendick
parent 26685f749e
commit 6120600e67
5 changed files with 11 additions and 9 deletions

View File

@@ -40,7 +40,6 @@ else {
<li><a href="./export.php">Export</a></li>
<li><a href="./sidebar.php">View as Sidebar</a></li>
<li><a href="./settings.php">Settings</a></li>
<li><a href="javascript:chpw()">Change Password</a></li>
<li><a href="./index.php?logout=1">Logout</a></li>
<?php } else { ?>
<li><a href="./index.php">Login</a></li>
@@ -114,7 +113,7 @@ if (isset ($_GET['user']) && check_username ($user)) {
<?php
}
else {
echo '<div id="content">';
echo '<div id="content">' . "\n";
$query = "SELECT user, SUM(bookmarks) AS bookmarks, SUM(folders) AS folders FROM (
SELECT user, 1 AS bookmarks, 0 AS folders FROM bookmark WHERE public='1' AND deleted!='1'
UNION ALL
@@ -130,7 +129,7 @@ else {
else {
message ($mysql->error);
}
echo "<div>";
echo "</div>";
}
?>
@@ -139,12 +138,7 @@ else {
<!-- Wrapper ends here. -->
</div>
<?php
print_footer ();
require_once (ABSOLUTE_PATH . "footer.php");
?>