1
0

Changed title 'Homepage' to 'URL'

This commit is contained in:
Stefan Frech
2008-06-16 09:36:47 +00:00
committed by Jonas Kattendick
parent b4308ee5ab
commit 5b8f25c80f
5 changed files with 93 additions and 61 deletions

View File

@@ -133,34 +133,17 @@ else {
<!-- Bookmarks starts here. -->
<div class="bookmarks" style="height: <?php echo $table_height; ?>;">
<div class="bookmarkcaption" style="background-color: #bbb;">
<div class="bmleft">
<input type="checkbox" name="CheckAll" onClick="selectthem('checkall', this.checked)">
<img src="./images/bookmark_image.gif" alt="" class="invisible">
</div>
<div class="bmright">
<span class="date">
<a href="./index.php?expand=<?php echo implode(",", $expand); ?>&folderid=<?php echo $folderid; ?>&order=date" class="f">Date <img src="./images/ascending.gif" alt="">
</span>
<img src="./images/edit.gif" alt="" class="invisible">
<img src="./images/move.gif" alt="" class="invisible">
<img src="./images/delete.gif" alt="" class="invisible">
</div>
<div class="link">
<a href="./index.php?expand=<?php echo implode(",", $expand); ?>&folderid=<?php echo $folderid; ?>" class="f">Name <img src="./images/ascending.gif" alt=""></a>
</div>
</div>
<?php
display_bookmark_header ();
require_once (ABSOLUTE_PATH . "bookmarks.php");
$query = sprintf ("SELECT title, url, description, UNIX_TIMESTAMP(date) AS timestamp, id, favicon, public
FROM bookmark
WHERE user='%s'
AND childof='%d'
AND deleted!='1'
ORDER BY $order",
ORDER BY $order[1]",
$mysql->escape ($username),
$mysql->escape ($folderid));