From 9ffb9a3166d27629bb870f128e10528c202093dc Mon Sep 17 00:00:00 2001 From: Alpha Chen Date: Mon, 27 Apr 2026 20:07:39 +0000 Subject: [PATCH] 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 --- conf/gitweb.conf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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]; -- 2.54.0