1
0

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:
Stefan Frech
2008-05-04 20:07:53 +00:00
committed by Jonas Kattendick
parent 8706d88784
commit 53e1e263ce
5 changed files with 16 additions and 11 deletions

View File

@@ -256,6 +256,8 @@ class import {
function import_netscape () {
while (!feof ($this->fp)){
$line = trim (fgets ($this->fp));
# netscape seems to store html encoded values
$line = html_entity_decode ($line, ENT_QUOTES, $this->charset);
# a folder has been found
if (ereg ("<DT><H3", $line)) {