aboutsummaryrefslogtreecommitdiff
path: root/captain/response.f90
diff options
context:
space:
mode:
authorJeffrey Armstrong <jeff@approximatrix.com>2021-05-06 10:17:03 -0400
committerJeffrey Armstrong <jeff@approximatrix.com>2021-05-06 10:17:03 -0400
commit8ca6d21882c521fb78f1325e9a88a558364b3ad4 (patch)
treec11030395ad1643f436213d0e6d511d2fd0a1131 /captain/response.f90
parent58575b7eb5bbce3b253d55f122ab4f401d49eeba (diff)
downloadlevitating-8ca6d21882c521fb78f1325e9a88a558364b3ad4.tar.gz
levitating-8ca6d21882c521fb78f1325e9a88a558364b3ad4.zip
CGI interface at least starts properly. Fixed rendering of templates to actually take place in CGI mode.
Diffstat (limited to 'captain/response.f90')
-rw-r--r--captain/response.f902
1 files changed, 1 insertions, 1 deletions
diff --git a/captain/response.f90 b/captain/response.f90
index 1fc21b1..3982f1e 100644
--- a/captain/response.f90
+++ b/captain/response.f90
@@ -128,7 +128,7 @@ contains
! so we need to skip ahead of it in the URL if it is there...
i = index(str, self%server)
if(i > 0) then
- i = i + len(self%server)
+ i = i + len(self%server)+1
else
i = 1
end if