aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorChristian Persch <chpe@cvs.gnome.org>2004-01-29 02:55:53 +0800
committerChristian Persch <chpe@src.gnome.org>2004-01-29 02:55:53 +0800
commit65b46c9e9e72d31a3a8937c4774f91b549fb214d (patch)
tree5e3792302008d40432c2bd9797530280e93b439d /src
parent283e534a38322c2783ff004081717e3d8eca83c2 (diff)
downloadgsoc2013-epiphany-65b46c9e9e72d31a3a8937c4774f91b549fb214d.tar
gsoc2013-epiphany-65b46c9e9e72d31a3a8937c4774f91b549fb214d.tar.gz
gsoc2013-epiphany-65b46c9e9e72d31a3a8937c4774f91b549fb214d.tar.bz2
gsoc2013-epiphany-65b46c9e9e72d31a3a8937c4774f91b549fb214d.tar.lz
gsoc2013-epiphany-65b46c9e9e72d31a3a8937c4774f91b549fb214d.tar.xz
gsoc2013-epiphany-65b46c9e9e72d31a3a8937c4774f91b549fb214d.tar.zst
gsoc2013-epiphany-65b46c9e9e72d31a3a8937c4774f91b549fb214d.zip
Use rdf:resource instead of rdf:about, fixes bug #131543.
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.
Diffstat (limited to 'src')
-rw-r--r--src/bookmarks/ephy-bookmarks-export.c2
1 files changed, 1 insertions, 1 deletions
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;