From d1f8e8ac6dcb2b546b14e7bf4b76bd01e540487c Mon Sep 17 00:00:00 2001 From: saturn Date: Sun, 21 Aug 2022 03:59:14 -0500 Subject: [PATCH] Fix bug in 52c0362d. --- lw2.lisp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lw2.lisp b/lw2.lisp index 851ae49e..a70bc532 100644 --- a/lw2.lisp +++ b/lw2.lisp @@ -1618,7 +1618,7 @@ signaled condition to *HTML-OUTPUT*." (tag-list-to-html tags)))))))) (define-component-routes forum-site (view-tags-index (standard-route :uri "/tags") () (view-tags-index))) -(define-component-routes forum-site (view-tags-index (standard-route :uri "/topics") () (view-tags-index))) +(define-component-routes forum-site (view-tags-index-alt (standard-route :uri "/topics") () (view-tags-index))) (define-route 'forum-site 'standard-route :name 'view-tags-index-redirect :uri "/tags/all" :handler (lambda () (redirect "/tags"))) -- 2.11.4.GIT