X-Git-Url: http://git.plutz.net/?p=busy;a=blobdiff_plain;f=actions%2Ftaskmeta.sh;h=5c5b01dfc486c3e394bb85e301250bfb8c05918d;hp=cd4e900c7d765a060a6ae0d6a058a8ffb3028ed0;hb=HEAD;hpb=e6133c890222e735b322df23f5931c59cea06ae6 diff --git a/actions/taskmeta.sh b/actions/taskmeta.sh index cd4e900..5c5b01d 100755 --- a/actions/taskmeta.sh +++ b/actions/taskmeta.sh @@ -18,7 +18,7 @@ $ACL_CREATETASK || echo "Location: ?p=Error&i=noaccess\n\n" $ACL_CREATETASK || exit 0 -info="$_GET[\"i\"]" +info="${_GET[i]}" [ -z "$info" ] && info="$(date +%s)_$(apg -M N -a 1 -n 1 -m 3 -x 3)" descfile="$_DATA/Tasks/$info.meta" @@ -28,13 +28,13 @@ commfile="$_DATA/Tasks/$info.comment.$(date +%s)_$(apg -M N -a 1 -n 1 -m 3 -x 3) anchor=$(ls $_DATA/Tasks |grep -A2 $info |grep '.meta$' |tail -n1 |cut -d. -f1) cgi_post -headline="$_POST[\"headline\"]" -taskstatus="$_POST[\"status\"]" -section="$_POST[\"section\"]" -description="$_POST[\"description\"]" -comment="$_POST[\"comm\"]" -[ -n "$_POST[\"cancel\"]" ] && cancel=true -[ "$_POST[\"submit\"]" = "Robots click here" ] && cancel=true +headline="${_POST[headline]}" +taskstatus="${_POST[status]}" +section="${_POST[section]}" +description="${_POST[description]}" +comment="${_POST[comm]}" +[ -n "${_POST[cancel]}" ] && cancel=true +[ "${_POST[submit]}" = "Robots click here" ] && cancel=true if [ -z "$cancel" -a -n "$comment" ]; then touch "$_DATA/Tasks/$info"