summaryrefslogtreecommitdiff
path: root/plugins
diff options
context:
space:
mode:
authorTheo Linkspfeifer <lastonestanding@tutanota.com>2019-07-07 23:25:56 +0200
committerAlexander Schwinn <alexxcons@xfce.org>2019-07-09 22:40:47 +0200
commit95985bb3acd99d3a5ce5d002e9a842f0d3f0cc76 (patch)
treefae60d4222ec60db2ee4ccb4de50b9e8cbbc08d0 /plugins
parent10754b01bd339ba066b143ad7f55a900ee67a872 (diff)
downloadthunar-95985bb3acd99d3a5ce5d002e9a842f0d3f0cc76.tar.gz
Fix XML declaratation in uca.xml (Bug #13623)
Diffstat (limited to 'plugins')
-rw-r--r--plugins/thunar-uca/thunar-uca-model.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/thunar-uca/thunar-uca-model.c b/plugins/thunar-uca/thunar-uca-model.c
index edee3e40..91f6e4a5 100644
--- a/plugins/thunar-uca/thunar-uca-model.c
+++ b/plugins/thunar-uca/thunar-uca-model.c
@@ -1426,7 +1426,7 @@ thunar_uca_model_save (ThunarUcaModel *uca_model,
fp = fdopen (fd, "w");
/* write the header */
- fprintf (fp, "<?xml encoding=\"UTF-8\" version=\"1.0\"?>\n<actions>\n");
+ fprintf (fp, "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<actions>\n");
/* write the model items */
for (lp = uca_model->items; lp != NULL; lp = lp->next)