diff --git a/src/response/200.sh b/src/response/200.sh index 3947ca6..864c6e6 100755 --- a/src/response/200.sh +++ b/src/response/200.sh @@ -16,7 +16,7 @@ if [[ ${r[status]} == 212 ]]; then else temp=$(mktemp) source "${r[view]}" > $temp - [[ "${r[headers]}" != '' ]] && printf "${r[headers]}\r\n\r\n" || printf "\r\n" + [[ "${r[headers]}" != '' ]] && printf "${r[headers]}\r\n" || printf "\r\n" cat $temp rm $temp fi @@ -24,21 +24,21 @@ if [[ ${r[status]} == 212 ]]; then elif [[ "${cfg[php_enabled]}" == true && "${r[uri]}" =~ ".php" ]]; then temp=$(mktemp) php "${r[uri]}" "$(get_dump)" "$(post_dump)" > $temp - [[ "${r[headers]}" != '' ]] && printf "${r[headers]}\r\n\r\n" || printf "\r\n" + [[ "${r[headers]}" != '' ]] && printf "${r[headers]}\r\n" || printf "\r\n" cat $temp rm $temp elif [[ "${cfg[python_enabled]}" == true && "${r[uri]}" =~ ".py" ]]; then temp=$(mktemp) python "${r[uri]}" "$(get_dump)" "$(post_dump)" > $temp - [[ "${r[headers]}" != '' ]] && printf "${r[headers]}\r\n\r\n" || printf "\r\n" + [[ "${r[headers]}" != '' ]] && printf "${r[headers]}\r\n" || printf "\r\n" cat $temp rm $temp elif [[ "${r[uri]}" =~ \.${cfg[extension]}$ ]]; then temp=$(mktemp) source "${r[uri]}" > $temp - [[ "${r[headers]}" != '' ]] && printf "${r[headers]}\r\n\r\n" || printf "\r\n" + [[ "${r[headers]}" != '' ]] && printf "${r[headers]}\r\n" || printf "\r\n" if [[ "${cfg[encoding]}" != '' ]]; then iconv $temp -f UTF-8 -t "${cfg[encoding]}" else