aboutsummaryrefslogtreecommitdiffstats
path: root/filter/filter-option.c
diff options
context:
space:
mode:
authorTobias Mueller <tobiasmue@src.gnome.org>2008-06-28 01:23:45 +0800
committerTobias Mueller <tobiasmue@src.gnome.org>2008-06-28 01:23:45 +0800
commit9d3c5b2a5b7970ec643743363f2cbd2f885d26ff (patch)
tree7a1aaee7968bb22443274eab594c2d6ff5850a33 /filter/filter-option.c
parent5f9edf647ec7dca445c9101c94eb699d3c0c9c38 (diff)
downloadgsoc2013-evolution-9d3c5b2a5b7970ec643743363f2cbd2f885d26ff.tar
gsoc2013-evolution-9d3c5b2a5b7970ec643743363f2cbd2f885d26ff.tar.gz
gsoc2013-evolution-9d3c5b2a5b7970ec643743363f2cbd2f885d26ff.tar.bz2
gsoc2013-evolution-9d3c5b2a5b7970ec643743363f2cbd2f885d26ff.tar.lz
gsoc2013-evolution-9d3c5b2a5b7970ec643743363f2cbd2f885d26ff.tar.xz
gsoc2013-evolution-9d3c5b2a5b7970ec643743363f2cbd2f885d26ff.tar.zst
gsoc2013-evolution-9d3c5b2a5b7970ec643743363f2cbd2f885d26ff.zip
Patch from Maciej Piechotka <uzytkownik2@gmail.com>
which fixes bug 526262 - "untranslated strings in advanced search" svn path=/trunk/; revision=35689
Diffstat (limited to 'filter/filter-option.c')
-rw-r--r--filter/filter-option.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/filter/filter-option.c b/filter/filter-option.c
index 0814c0a536..5c4283b889 100644
--- a/filter/filter-option.c
+++ b/filter/filter-option.c
@@ -233,7 +233,7 @@ xml_create (FilterElement *fe, xmlNodePtr node)
value = (char *)xmlGetProp (n, (const unsigned char *)"value");
work = n->children;
while (work) {
- if (!strcmp ((char *)work->name, "title")) {
+ if (!strcmp ((char *)work->name, "title") || !strcmp ((char *)work->name, "_title")) {
if (!title) {
if (!(tmp = (char *)xmlNodeGetContent (work)))
tmp = (char *)xmlStrdup ((const unsigned char *)"");