From 99e7d7e303ffab779160f84ceb086aab9e5df065 Mon Sep 17 00:00:00 2001 From: Tom Willemsen Date: Thu, 21 Mar 2013 23:30:52 +0100 Subject: [PATCH] Switch date and name Oops, these were being passed-in in the wrong order. --- clark.lisp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/clark.lisp b/clark.lisp index 742dd77..072a6cc 100644 --- a/clark.lisp +++ b/clark.lisp @@ -64,7 +64,7 @@ The result contains the url and the name of the bookmark." (defun insert-bookmark (url name description) "Insert URL, NAME and DESCRIPTION into the bookmark table." (execute-non-query *db* "INSERT INTO bookmark VALUES (?, ?, ?, ?)" - url name (get-universal-time) description)) + url (get-universal-time) name description)) (defun insert-bookmark-tag (bookmark-id tag-id) "Insert BOOKMARK-ID and TAG-ID into the bookmark_tag table."