diff options
author | Jonas Smedegaard <dr@jones.dk> | 2017-04-05 20:15:04 +0200 |
---|---|---|
committer | Jonas Smedegaard <dr@jones.dk> | 2017-04-05 20:15:04 +0200 |
commit | c95a40eb34ceaf52aa88214b53ea6eb63fe6cbbd (patch) | |
tree | 9d8d0013070d6dc93c8ab69bbee997bebb0187e5 /index.cgi | |
parent | b98bb29b5646a1bd1fa68baf39aa22ef20c90781 (diff) |
Tidy variables.
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'; |