aboutsummaryrefslogtreecommitdiffstats
path: root/src
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 /src
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
Diffstat (limited to 'src')
-rw-r--r--src/bookmarks/ephy-bookmarks-import.c2
1 files changed, 1 insertions, 1 deletions
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);
}