diff options
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | src/bookmarks/ephy-bookmarks-import.c | 2 |
2 files changed, 7 insertions, 1 deletions
@@ -1,3 +1,9 @@ +2004-10-19 Christian Persch <chpe@cvs.gnome.org> + + * src/bookmarks/ephy-bookmarks-import.c: (xbel_parse_xbel): + + Fix import of bookmarks in root folder. Fixes bug #152443. + 2004-10-18 Adam Hooper <adamh@cvs.gnome.org> * data/epiphany-extension.xsd: diff --git a/src/bookmarks/ephy-bookmarks-import.c b/src/bookmarks/ephy-bookmarks-import.c index f41c882d5..391d4c2e9 100644 --- a/src/bookmarks/ephy-bookmarks-import.c +++ b/src/bookmarks/ephy-bookmarks-import.c @@ -418,7 +418,7 @@ xbel_parse_xbel (EphyBookmarks *eb, xmlTextReaderPtr reader) /* shouldn't happen but does anyway :( */ } else if (xmlStrEqual (tag, (xmlChar *) "bookmark") && type == XML_READER_TYPE_ELEMENT - && state == STATE_FOLDER) + && state == STATE_XBEL) { EphyNode *node = NULL; |