Switch date and name
Oops, these were being passed-in in the wrong order.
This commit is contained in:
parent
aff3e1536a
commit
99e7d7e303
1 changed files with 1 additions and 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."
|
||||
|
|
Loading…
Reference in a new issue