Drop "our" from gitweb feature assignments
gitweb.cgi declares %feature with "our" before loading the config file,
so re-declaring it causes a syntax error with the "feature" pragma.
Assisted-by: GLM-5.1 via pi
diff --git a/conf/gitweb.conf b/conf/gitweb.conf
index 1a45558..5ea6459 100644
--- a/conf/gitweb.conf
+++ b/conf/gitweb.conf
@@ -3,5 +3,5 @@
our $projectroot = "/var/quire/repos";
-our $feature{'blame'}{'default'} = [1];
-our $feature{'highlight'}{'default'} = [1];
+$feature{'blame'}{'default'} = [1];
+$feature{'highlight'}{'default'} = [1];