diff -urN smeserver-gitweb-1.1.0.org/root/etc/e-smith/templates/etc/gitweb.conf/60ExportAuthHook smeserver-gitweb-1.1.0/root/etc/e-smith/templates/etc/gitweb.conf/60ExportAuthHook --- smeserver-gitweb-1.1.0.org/root/etc/e-smith/templates/etc/gitweb.conf/60ExportAuthHook 2015-02-03 13:17:16.000000000 +1030 +++ smeserver-gitweb-1.1.0/root/etc/e-smith/templates/etc/gitweb.conf/60ExportAuthHook 2016-02-11 12:56:11.415002177 +1030 @@ -67,16 +67,16 @@ # Retrieve project properties from database my $git_db = esmith::GitDB->open_ro() or - auth_error( "500 Internal Error", "Could not open the Git repository database!\nDoes the web server have permission to read the git database file?\n" ); + auth_error( "500 Internal Error", "Could not open the Git repository database! Does the web server have permission to read the git database file?" ); my $repository = $git_db->get($projectname) or - auth_error( "500 Internal Error", "The git repository '$projectname' does not seem to exist in the repository database!\n" ); + auth_error( "500 Internal Error", "The git repository '$projectname' does not seem to exist in the repository database!" ); my %properties = $repository->props; # Check if the request is from a local IP address for this host my $networks_db = esmith::NetworksDB->open_ro() or - auth_error( "500 Internal Error", "Could not open the networks database!\n" ); + auth_error( "500 Internal Error", "Could not open the networks database!" ); # Get server private IP address and mask for access to the local network only my @network_setting = split(/[\/ ]/, $networks_db->local_access_spec('private'));