From 2ea7cfb8660265c13340d4686f53440b36142c91 Mon Sep 17 00:00:00 2001 From: Stefan Frech Date: Sun, 1 Jun 2008 19:29:18 +0000 Subject: [PATCH] Updated tableless design and added new search function. --- CHANGES | 1 + admin.php | 1 - bookmarks.php | 12 +++++++--- export.php | 1 - import.php | 1 - index.php | 66 +++++++++++++++++++++++++++++++++++++++++++++++++-- settings.php | 11 ++++++--- style.css | 10 ++++---- 8 files changed, 88 insertions(+), 15 deletions(-) diff --git a/CHANGES b/CHANGES index 7fb47c1..4710d33 100644 --- a/CHANGES +++ b/CHANGES @@ -17,3 +17,4 @@ 17.05.2008, Version 0.8.11_beta - Added a link to use Online-Bookmarks as a real Firefox Sidebar. Many thanks to Adam Patterson. +- You can find the link "Change Password" under "Settings" from now on. diff --git a/admin.php b/admin.php index fecdd1b..75561bc 100644 --- a/admin.php +++ b/admin.php @@ -35,7 +35,6 @@ $message2 = '';
  • Export
  • View as Sidebar
  • Settings
  • -
  • Change Password
  • Logout
  • diff --git a/bookmarks.php b/bookmarks.php index 6314763..b55b542 100644 --- a/bookmarks.php +++ b/bookmarks.php @@ -39,10 +39,10 @@ function list_bookmarks ($bookmarks, $show_checkbox, $show_folder, $show_icon, $ $folder_image = $folder_opened; } $expand = $tree->get_path_to_root ($value['fid']); - echo ''; + echo "\t" . '
    '; echo ''; echo $folder_image . " " . $value['name'] . ""; - echo "\n"; + echo "
    \n"; } # the checkbox and favicon section @@ -118,7 +118,13 @@ function list_bookmarks ($bookmarks, $show_checkbox, $show_folder, $show_icon, $ # the description and if not empty if ($show_desc && $value['description'] != "") { - echo '
    ' . $value['description'] . "
    \n"; + if ($show_folder) { + $css_extension = ' style="margin-left: ' . $column_width_folder . ';"'; + } + else { + $css_extension = ""; + } + echo "\t" . '
    ' . $value['description'] . "
    \n"; } echo "\n\n"; diff --git a/export.php b/export.php index 03f9d5a..8236ec3 100644 --- a/export.php +++ b/export.php @@ -47,7 +47,6 @@ if (!isset ($_POST['browser']) || $_POST['browser'] == "" ||
  • Export
  • View as Sidebar
  • Settings
  • -
  • Change Password
  • Logout
  • diff --git a/import.php b/import.php index 2d28462..ce72db6 100644 --- a/import.php +++ b/import.php @@ -24,7 +24,6 @@ logged_in_only ();
  • Export
  • View as Sidebar
  • Settings
  • -
  • Change Password
  • Logout
  • diff --git a/index.php b/index.php index db89335..4cb9bbe 100644 --- a/index.php +++ b/index.php @@ -18,13 +18,25 @@ else {