From 1c3b6f50df9c1106bd44dbb201f265f144c1fb3c Mon Sep 17 00:00:00 2001 From: Aaron Parecki Date: Sun, 27 May 2018 08:48:37 -0700 Subject: split tags using tokenfield instead of comma-separated this allows tag values to contain spaces, which is up to your own micropub server to handle appropriately. closes #95 and replaces #96 --- views/event.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'views/event.php') diff --git a/views/event.php b/views/event.php index a71ce79..c50e1d4 100644 --- a/views/event.php +++ b/views/event.php @@ -73,7 +73,7 @@ name: $("#event_name").val(), start: event_start, location: $("#event_location").val(), - category: csv_to_array($("#note_category").val()) + category: tokenfieldToArray("#note_category") }; if(event_end) { -- cgit v1.2.3