Changeset 27273 in project
- Timestamp:
- 08/20/12 22:28:11 (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
release/4/qwiki/trunk/qwiki.scm
r27237 r27273 295 295 (auth-required (requires-authentication? source-file)) 296 296 (postdata (if (eq? 'POST (request-method req)) 297 (read-urlencoded-request-data )297 (read-urlencoded-request-data req) 298 298 '())) 299 299 (new-file (not (file-exists? source-file))) … … 654 654 ((cdr handler) (current-request)))) 655 655 ((any impossible-filename? (cdr (uri-path uri))) ; should be absolute 656 (read-urlencoded-request-data ) ; Discard possible sent data656 (read-urlencoded-request-data req) ; Discard possible sent data 657 657 (send-status 404 "Not found")) 658 658 (else (let* ((action (->symbol (alist-ref
Note: See TracChangeset
for help on using the changeset viewer.