aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarco Pesenti Gritti <marco@gnome.org>2004-03-22 17:26:14 +0800
committerMarco Pesenti Gritti <marco@src.gnome.org>2004-03-22 17:26:14 +0800
commitde2dac712be52b1db600f152b474211942beb9fa (patch)
tree12f2011d94d109dc2ddd6a8cbf5b8bd8da94125e
parent68190bd716d4b9458af4b2a739f2b6f896884875 (diff)
downloadgsoc2013-epiphany-de2dac712be52b1db600f152b474211942beb9fa.tar
gsoc2013-epiphany-de2dac712be52b1db600f152b474211942beb9fa.tar.gz
gsoc2013-epiphany-de2dac712be52b1db600f152b474211942beb9fa.tar.bz2
gsoc2013-epiphany-de2dac712be52b1db600f152b474211942beb9fa.tar.lz
gsoc2013-epiphany-de2dac712be52b1db600f152b474211942beb9fa.tar.xz
gsoc2013-epiphany-de2dac712be52b1db600f152b474211942beb9fa.tar.zst
gsoc2013-epiphany-de2dac712be52b1db600f152b474211942beb9fa.zip
the xbel mime 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 mime type is now application/x-xbel
-rw-r--r--ChangeLog6
-rw-r--r--src/bookmarks/ephy-bookmarks-import.c2
2 files changed, 7 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 72372e3a6..3773e7dbd 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2004-03-22 Marco Pesenti Gritti <marco@gnome.org>
+
+ * src/bookmarks/ephy-bookmarks-import.c: (ephy_bookmarks_import):
+
+ the xbel mime type is now application/x-xbel
+
2004-03-21 Christian Persch <chpe@cvs.gnome.org>
* src/window-commands.c: (window_cmd_help_about):
diff --git a/src/bookmarks/ephy-bookmarks-import.c b/src/bookmarks/ephy-bookmarks-import.c
index 129edf83a..8272455b4 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);
}