From: Adam Dickmeiss Date: Thu, 10 Apr 2014 13:20:17 +0000 (+0200) Subject: sortmap relevance always uses increasing=1 PAZ-930 X-Git-Tag: v1.6.40~2 X-Git-Url: http://git.indexdata.com/?p=pazpar2-moved-to-github.git;a=commitdiff_plain;h=b4e2292424ace7d7065ed2001e5e0a8f2d8f5daf sortmap relevance always uses increasing=1 PAZ-930 --- diff --git a/src/client.c b/src/client.c index d6a815b..fbfc564 100644 --- a/src/client.c +++ b/src/client.c @@ -1495,6 +1495,8 @@ int client_parse_sort(struct client *cl, struct reclist_sortparms *sp) const char *sort_strategy_and_spec = get_strategy_plus_sort(cl, sp->name); int increasing = sp->increasing; + if (!strcmp(sp->name, "relevance")) + increasing = 1; if (sort_strategy_and_spec && strlen(sort_strategy_and_spec) < 40) { char strategy[50], *p;