diff options
| author | 2013-03-21 23:30:52 +0100 | |
|---|---|---|
| committer | 2013-03-21 23:30:52 +0100 | |
| commit | 99e7d7e303ffab779160f84ceb086aab9e5df065 (patch) | |
| tree | 60e1755d3b61392df5f2abae7607300e42408eb7 | |
| parent | aff3e1536af3c9802c56716d4f4a52c5aaaab436 (diff) | |
| download | clark-99e7d7e303ffab779160f84ceb086aab9e5df065.tar.gz clark-99e7d7e303ffab779160f84ceb086aab9e5df065.zip | |
Switch date and name
Oops, these were being passed-in in the wrong order.
| -rw-r--r-- | clark.lisp | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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." |
