diff options
author | Marco Pesenti Gritti <marco@gnome.org> | 2004-03-22 17:26:14 +0800 |
---|---|---|
committer | Marco Pesenti Gritti <marco@src.gnome.org> | 2004-03-22 17:26:14 +0800 |
commit | de2dac712be52b1db600f152b474211942beb9fa (patch) | |
tree | 12f2011d94d109dc2ddd6a8cbf5b8bd8da94125e /src | |
parent | 68190bd716d4b9458af4b2a739f2b6f896884875 (diff) | |
download | gsoc2013-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.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 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); } |