diff options
Diffstat (limited to 'index.cgi')
-rwxr-xr-x | index.cgi | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -2,12 +2,12 @@ use CGI::FormBuilder; -my $build_path = '../build'; +my $docroot = '../build/html'; # TODO: check if protocol-agnostic URL works my $webroot = 'https://form.omni-presence.dk/'; -my $req_path = $build_path . '/html/index.tmpl'; -my $ack_path = $build_path . '/html/thanks/index.html'; +my $req_path = $docroot . '/index.tmpl'; +my $ack_path = $docroot . '/thanks/index.html'; my $webmaster = 'webmaster@omni-presence.dk'; my $frontdesk = 'info@omni-presence.dk'; |