aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog7
-rw-r--r--src/bookmarks/ephy-bookmarks-export.c2
2 files changed, 8 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 7cb7178fe..0096b3b48 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,12 @@
2004-01-28 Christian Persch <chpe@cvs.gnome.org>
+ * src/bookmarks/ephy-bookmarks-export.c:
+ (ephy_bookmarks_export_rdf):
+
+ Use rdf:resource instead of rdf:about, fixes bug #131543.
+
+2004-01-28 Christian Persch <chpe@cvs.gnome.org>
+
* src/bookmarks/ephy-bookmarks-menu.c:
(ephy_bookmarks_menu_get_type), (sync_topic_properties),
(topic_child_changed_cb), (ephy_bookmarks_menu_init):
diff --git a/src/bookmarks/ephy-bookmarks-export.c b/src/bookmarks/ephy-bookmarks-export.c
index 1251eebe9..f035e8fbb 100644
--- a/src/bookmarks/ephy-bookmarks-export.c
+++ b/src/bookmarks/ephy-bookmarks-export.c
@@ -178,7 +178,7 @@ ephy_bookmarks_export_rdf (EphyBookmarks *bookmarks,
}
ret = xmlTextWriterWriteAttributeNS
- (writer, "rdf", "about", NULL, link ? link : url);
+ (writer, "rdf", "resource", NULL, link ? link : url);
g_free (link);
if (ret < 0) break;