diff options
author | Marco Pesenti Gritti <marco@gnome.org> | 2004-03-22 17:17:33 +0800 |
---|---|---|
committer | Marco Pesenti Gritti <marco@src.gnome.org> | 2004-03-22 17:17:33 +0800 |
commit | bcb9219590ac63ec2cb717e90ec9ef176947cdb6 (patch) | |
tree | b48d08e5bd9670242fa053fdfb67711f25086368 | |
parent | 694c1d845e424e81b3ca920717f75e8b1dd5e5e3 (diff) | |
download | gsoc2013-epiphany-bcb9219590ac63ec2cb717e90ec9ef176947cdb6.tar gsoc2013-epiphany-bcb9219590ac63ec2cb717e90ec9ef176947cdb6.tar.gz gsoc2013-epiphany-bcb9219590ac63ec2cb717e90ec9ef176947cdb6.tar.bz2 gsoc2013-epiphany-bcb9219590ac63ec2cb717e90ec9ef176947cdb6.tar.lz gsoc2013-epiphany-bcb9219590ac63ec2cb717e90ec9ef176947cdb6.tar.xz gsoc2013-epiphany-bcb9219590ac63ec2cb717e90ec9ef176947cdb6.tar.zst gsoc2013-epiphany-bcb9219590ac63ec2cb717e90ec9ef176947cdb6.zip |
The xbel type is now application/x-xbel
2004-03-22 Marco Pesenti Gritti <marco@gnome.org>
* src/bookmarks/ephy-bookmarks-import.c: (ephy_bookmarks_import):
The xbel type is now application/x-xbel
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | src/bookmarks/ephy-bookmarks-import.c | 2 |
2 files changed, 7 insertions, 1 deletions
@@ -1,5 +1,11 @@ 2004-03-22 Marco Pesenti Gritti <marco@gnome.org> + * src/bookmarks/ephy-bookmarks-import.c: (ephy_bookmarks_import): + + The xbel type is now application/x-xbel + +2004-03-22 Marco Pesenti Gritti <marco@gnome.org> + * NEWS: * configure.in: diff --git a/src/bookmarks/ephy-bookmarks-import.c b/src/bookmarks/ephy-bookmarks-import.c index 2e033b064..9bb83082e 100644 --- a/src/bookmarks/ephy-bookmarks-import.c +++ b/src/bookmarks/ephy-bookmarks-import.c @@ -100,7 +100,7 @@ ephy_bookmarks_import (EphyBookmarks *bookmarks, { return ephy_bookmarks_import_mozilla (bookmarks, filename); } - else if (strcmp (type, "application/xbel") == 0) + else if (strcmp (type, "application/x-xbel") == 0) { return ephy_bookmarks_import_xbel (bookmarks, filename); } |