tindex.dcgi: fix multi-keyword search again - recipes - various cooking recipes HTML git clone git://src.adamsgaard.dk/recipes DIR Log DIR Files DIR Refs DIR Submodules --- DIR commit 349177717bd45557055f71794e24c0088add9d90 DIR parent c7ff0596f5a307cf66a14494940dd403c145fd88 HTML Author: Anders Damsgaard <anders@adamsgaard.dk> Date: Fri, 27 Aug 2021 17:57:33 +0200 index.dcgi: fix multi-keyword search again Diffstat: M index.dcgi | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) --- DIR diff --git a/index.dcgi b/index.dcgi t@@ -38,9 +38,9 @@ then normalarguments="$(printf "${arguments}\n" | tr '+' ' ')" if [ $searchvegetarian -eq 1 ]; then - results="$(./cookwhatveg "$normalarguments" | gphfmt)" + results="$(./cookwhatveg $normalarguments | gphfmt)" else - results="$(./cookwhat "$normalarguments" | gphfmt)" + results="$(./cookwhat $normalarguments | gphfmt)" fi n="$(printf '%s' "$results" | wc -l)"