There is a new enviroment variable introduced in this new release
version, called SCRIPT_NAME, saying that:
#########################################
783 my $base_uri = $ENV{SCRIPT_NAME};
784 $base_uri =~ s{/index.cgi}{};
# in SVN/Web.pm sub run_cgi
#########################################
No instruction found regarding this env, further I think this way should
be better:
#########################################
783 my $base_uri = $ENV{SCRIPT_NAME} || q();
784 $base_uri =~ s{/index\.cgi}{};
#########################################
Or else there is a warning against the regex substitution in case
SCRIPT_NAME is not defined.
BR, Dongxu