From 63882d95769345c3a8e6a1fd5bfab3b868beec6b Mon Sep 17 00:00:00 2001 From: Emil Williams Date: Tue, 6 May 2025 12:22:02 -0600 Subject: [PATCH] -- --- perl/Triple.pm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/perl/Triple.pm b/perl/Triple.pm index 306607c..6ccd822 100644 --- a/perl/Triple.pm +++ b/perl/Triple.pm @@ -21,9 +21,9 @@ use constant { }; our %pages = ( - '/' => (STATIC_PAGE, 'index'), - '/+/' => (DYNAMIC_PAGE, 'img'), # General Board; primary general discussion - '/sys/' => (DYNAMIC_PAGE, 'img'), # Admin Board; Administration info, Q&A, & Changelog + '/' => [ STATIC_PAGE, 'index' ], + '/+/' => [ DYNAMIC_PAGE, 'img' ], # General Board; primary general discussion + '/sys/' => [ DYNAMIC_PAGE, 'img' ], # Admin Board; Administration info, Q&A, & Changelog ); sub Triple::main { -- 2.47.3