diff options
author | Ettore Perazzoli <ettore@src.gnome.org> | 2001-08-08 19:54:51 +0800 |
---|---|---|
committer | Ettore Perazzoli <ettore@src.gnome.org> | 2001-08-08 19:54:51 +0800 |
commit | 31047e36feace597af23cb60297f2ce54c5138f8 (patch) | |
tree | df597319c7656c176d3cb05c9e37f59bf4995571 /shell/e-local-folder.c | |
parent | e9bd546cbe64b86b61308a713b520bddba1ef247 (diff) | |
download | gsoc2013-evolution-31047e36feace597af23cb60297f2ce54c5138f8.tar gsoc2013-evolution-31047e36feace597af23cb60297f2ce54c5138f8.tar.gz gsoc2013-evolution-31047e36feace597af23cb60297f2ce54c5138f8.tar.bz2 gsoc2013-evolution-31047e36feace597af23cb60297f2ce54c5138f8.tar.lz gsoc2013-evolution-31047e36feace597af23cb60297f2ce54c5138f8.tar.xz gsoc2013-evolution-31047e36feace597af23cb60297f2ce54c5138f8.tar.zst gsoc2013-evolution-31047e36feace597af23cb60297f2ce54c5138f8.zip |
[Fixes, among other things, #5705, "Ampersands not handled
correctly in drag + drop". Thanks to Nat for actually discovering
the problem.]
* e-shortcuts.c (save_shortcuts): Use `xmlNewTextChild()' instead
of `xmlNewChild()'.
* e-local-folder.c (save_metadata): Use `xmlNewTextChild' instead
of `xmlNewChild()'.
svn path=/trunk/; revision=11783
Diffstat (limited to 'shell/e-local-folder.c')
-rw-r--r-- | shell/e-local-folder.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/shell/e-local-folder.c b/shell/e-local-folder.c index 41fe1a4150..2b79820da3 100644 --- a/shell/e-local-folder.c +++ b/shell/e-local-folder.c @@ -327,8 +327,8 @@ save_metadata (ELocalFolder *local_folder) (xmlChar *) e_folder_get_type_string (folder)); if (e_folder_get_description (folder) != NULL) - xmlNewChild (root, NULL, (xmlChar *) "description", - (xmlChar *) e_folder_get_description (folder)); + xmlNewTextChild (root, NULL, (xmlChar *) "description", + (xmlChar *) e_folder_get_description (folder)); physical_directory = e_folder_get_physical_uri (folder) + URI_PREFIX_LEN - 1; physical_path = g_concat_dir_and_file (physical_directory, E_LOCAL_FOLDER_METADATA_FILE_NAME); |