summaryrefslogtreecommitdiff
path: root/mulkcms-hunchentoot.lisp
diff options
context:
space:
mode:
Diffstat (limited to 'mulkcms-hunchentoot.lisp')
-rw-r--r--mulkcms-hunchentoot.lisp4
1 files changed, 3 insertions, 1 deletions
diff --git a/mulkcms-hunchentoot.lisp b/mulkcms-hunchentoot.lisp
index 664658d..3200110 100644
--- a/mulkcms-hunchentoot.lisp
+++ b/mulkcms-hunchentoot.lisp
@@ -13,7 +13,9 @@
(defun dispatch-mulkcms-request (request)
(let* ((relative-path (subseq (script-name request) 1)))
- (or (mulkcms::find-journal-archive-request-handler relative-path)
+ (or (mulkcms::find-journal-archive-request-handler
+ relative-path
+ (assoc "full" (get-parameters*) :test #'equal))
(mulkcms::find-article-request-handler relative-path))))
(defun setup-handlers ()