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:
@@ -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)) {
|
||||
|
||||
Reference in New Issue
Block a user