diff options
author | Aaron Parecki <aaron@parecki.com> | 2015-01-23 12:40:19 -0800 |
---|---|---|
committer | Aaron Parecki <aaron@parecki.com> | 2015-01-23 12:40:19 -0800 |
commit | 1c4bf54da4ca2419598a8cb541b3cb3737452aab (patch) | |
tree | 45bb795a2d9f63964202c188eaca6ea7565775be /views | |
parent | 9fe3a8ff07733145847c84b27c983fb7986d6e70 (diff) |
use php arrays for syndicate-to properties
Diffstat (limited to 'views')
-rw-r--r-- | views/new-post.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/views/new-post.php b/views/new-post.php index 12c01f9..a03259c 100644 --- a/views/new-post.php +++ b/views/new-post.php @@ -126,7 +126,7 @@ $(function(){ location: $("#note_location").val(), category: $("#note_category").val(), slug: $("#note_slug").val(), - 'syndicate-to': syndications.join(',') + 'syndicate-to': syndications }, function(data){ var response = JSON.parse(data); |