diff options
author | Aaron Parecki <aaron@parecki.com> | 2016-06-30 19:57:32 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-06-30 19:57:32 -0700 |
commit | dbb17a5182c883a33ad14ba808fdb666c75568f3 (patch) | |
tree | fc03ca205b68cf68319bc8458106f30c74146eec | |
parent | 455a6c9dfe5d16ebe1652cb8dd71883a623e7242 (diff) |
fix syndicate-to on bookmarks
-rw-r--r-- | views/new-bookmark.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/views/new-bookmark.php b/views/new-bookmark.php index 7f381ab..417c86d 100644 --- a/views/new-bookmark.php +++ b/views/new-bookmark.php @@ -71,7 +71,7 @@ $(function(){ var syndications = []; $("#syndication-container button.btn-info").each(function(i,btn){ - syndications.push($(btn).data('syndication')); + syndications.push($(btn).data('syndicate-to')); }); $.post("/micropub/post", { |