From: Emil Williams Date: Sun, 11 May 2025 06:04:47 +0000 (-0600) Subject: -- X-Git-Url: https://git.xolatile.top/?a=commitdiff_plain;h=bd64b7f9c60d5ca55fa934e9e2b80838c4bad19f;p=emil-3chen.org.git -- --- diff --git a/perl/Triple.pm b/perl/Triple.pm index 6bb0d06..fc069f7 100644 --- a/perl/Triple.pm +++ b/perl/Triple.pm @@ -28,8 +28,8 @@ use constant { our %page = ( '' => [ STATIC_PAGE, '404', '404 Not Found', '404 Not Found' ], '/' => [ STATIC_PAGE, 'index', 'Chendex', 'Forum Index' ], - '/c/' => [ DYNAMIC_PAGE, 'img', '/c/ - Chen Tech', 'Chen Tech' ], - '/sys/' => [ DYNAMIC_PAGE, 'img', 'System', 'Site Info' ], + '/c/' => [ DYNAMIC_PAGE, 'img', '/c/', 'Chen Tech' ], + '/sys/' => [ DYNAMIC_PAGE, 'img', '/sys/', 'Site Info' ], ); our %static; @@ -67,7 +67,7 @@ sub Triple::main { $vars->{"description"} = "$set[PAGE_DESCRIPTION]"; $template->process($set[PAGE_TT], $vars, \$page) or syslog("info", $template->error()); } else { - $page = %static{''}; + $page = $static{''}; } } print $page;