diff options
author | Christian Persch <chpe@cvs.gnome.org> | 2004-10-20 01:35:31 +0800 |
---|---|---|
committer | Christian Persch <chpe@src.gnome.org> | 2004-10-20 01:35:31 +0800 |
commit | 51d9cb2d971c06038eeca975aa9b59027203f452 (patch) | |
tree | a9654a30d65d3754b4f4a2100f29feaa66ce868e /src/bookmarks | |
parent | e2adcaa9c470111f7e585fe959de4b17f75fef7e (diff) | |
download | gsoc2013-epiphany-51d9cb2d971c06038eeca975aa9b59027203f452.tar.gz gsoc2013-epiphany-51d9cb2d971c06038eeca975aa9b59027203f452.tar.zst gsoc2013-epiphany-51d9cb2d971c06038eeca975aa9b59027203f452.zip |
Fix import of bookmarks in root folder. Fixes bug #152443.
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.
Diffstat (limited to 'src/bookmarks')
-rw-r--r-- | src/bookmarks/ephy-bookmarks-import.c | 2 |
1 files changed, 1 insertions, 1 deletions
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; |