Changed the "select folder" link to a button in bookmark_edit.php and bookmark_new.php.
Fixed HTML encoded strings when importing bookmarks in Netscape format. Fixed some typos in index.php and added the "My Bookmarks" link in search mode.
This commit is contained in:
17
index.php
17
index.php
@@ -12,12 +12,9 @@ else {
|
||||
|
||||
?>
|
||||
|
||||
|
||||
|
||||
|
||||
<table class="caption">
|
||||
<tr>
|
||||
<td><span class="caption"><img src="./images/logo.png" alt=""> Online-Bookmarks of <?php echo $username; ?></span>
|
||||
<td><span class="caption"><img src="./images/logo.png" alt=""> <?php echo $username; ?>'s Online Bookmarks</span>
|
||||
</td>
|
||||
|
||||
<td class="captionright">
|
||||
@@ -54,6 +51,9 @@ else {
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="menu">
|
||||
<?php if ($search_mode) { ?>
|
||||
<a href="./index.php"><?php echo $settings['root_folder_name']; ?></a><br>
|
||||
<?php } ?>
|
||||
<a href="javascript:bookmarknew('<?php echo $folderid; ?>')">New Bookmark</a><br>
|
||||
<a href="javascript:bookmarkedit(checkselected())">Edit Bookmarks</a><br>
|
||||
<a href="javascript:bookmarkmove(checkselected())">Move Bookmarks</a><br>
|
||||
@@ -89,7 +89,9 @@ else {
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="menu">
|
||||
<?php if (admin_only ()) { ?>
|
||||
<a href="./admin.php">Admin</a><br>
|
||||
<?php } ?>
|
||||
<a href="./import.php">Import</a><br>
|
||||
<a href="./export.php">Export</a><br>
|
||||
<a href="./sidebar.php">View as Sidebar</a><br>
|
||||
@@ -108,7 +110,8 @@ else {
|
||||
<?php if ($search_mode): ?>
|
||||
|
||||
<td class="main4">
|
||||
<div style="height: <?php echo $table_height; ?>; overflow:auto;">
|
||||
<div style="height: <?php echo $table_height; ?>; overflow:auto;">
|
||||
<div style="margin-left:3px;" class="sh"><a class="f" href="./index.php"><img src="./images/folder_open.gif"> Back to <?php echo $settings['root_folder_name']?></a></div>
|
||||
|
||||
<?php
|
||||
$query = sprintf ("SELECT bookmark.title,
|
||||
@@ -152,7 +155,7 @@ else {
|
||||
$settings['show_column_edit'],
|
||||
$settings['show_column_move'],
|
||||
$settings['show_column_delete'],
|
||||
true);
|
||||
$settings['show_public']);
|
||||
}
|
||||
else {
|
||||
echo '<div> No Bookmarks found matching ' . $search . '.</div>';
|
||||
@@ -164,7 +167,7 @@ else {
|
||||
|
||||
?>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</td>
|
||||
|
||||
<?php else: ?>
|
||||
|
||||
Reference in New Issue
Block a user