aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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 05953344a..664062322 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -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);
}